diff options
Diffstat (limited to 'design/templates/base.html')
-rw-r--r-- | design/templates/base.html | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/design/templates/base.html b/design/templates/base.html index 6b6ef8c..f14e5df 100644 --- a/design/templates/base.html +++ b/design/templates/base.html @@ -1,4 +1,4 @@ -<!DOCTYPE html> +{% load static %}<!DOCTYPE html> <!--[if lt IE 8]> <html class="lte8"> <![endif]--> <!--[if IE 8]> <html class="ie8 lte8"> <![endif]--> <!--[if IE 9]> <html class="ie9"> <![endif]--> @@ -10,9 +10,10 @@ <meta property="og:description" content="Note taking for writers"> <meta property="og:site_name" content="Notes"> <meta property="og:image" content=""> -<link rel="stylesheet" href="/media/screenv1.css?{{now}}" type="text/css"> +<link rel="stylesheet" href="/media/screenv1.css?{%now "u"%}" type="text/css"> +{% block extrastyles %}{%endblock%} <link rel="icon" type="image/png" href=""> -<link rel="manifest" href="/webmanifest.json"> +<!--<link rel="manifest" href="/webmanifest.json">--> <link rel="apple-touch-icon" sizes="256x256" href=""> </head> <body class="{% block bodyclass %}{% endblock %}"> @@ -37,11 +38,17 @@ </header> </div> <div class="wrapper"> + <ul class="breadcrumb" id="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> + <li> + <a href="/" title="home" itemprop="url"><span itemprop="title">Home</span></a> + </li> + {% block breadcrumbs %}{% endblock %} + </ul> {% block content %} {% endblock %} </div> <footer> - <p>© Luxagraf Software. Problems or questions? Contact <a href="{% url 'pages' slug='terms-of-service' %}" title="">support@notes.tld</a>.</p> + <p>© Arkhangelsk Software. Problems or questions? Contact <a href="{% url 'pages' slug='terms-of-service' %}" title="">support@notes.tld</a>.</p> <nav> <ul> <li><a href="{% url 'pages' slug='terms-of-service' %}" title="">Terms of Service</a></li> @@ -56,21 +63,11 @@ {% block extra %} {%endblock%} <script async src="/media/js/package.min.js"></script> +{% block jsinclude %}{%endblock%} <script> // Waiting for the DOM to load document.addEventListener("DOMContentLoaded", function () { - // Select your overlay trigger - var trigger = document.querySelector('#overlay-trigger'); - trigger.addEventListener('click', function(e){ - e.preventDefault(); - novicell.overlay.create({ - 'selector': trigger.getAttribute('data-element'), - 'class': 'selector-overlay', - "onCreate": function() { console.log('created'); }, - "onLoaded": function() { console.log('loaded'); }, - "onDestroy": function() { console.log('Destroyed'); } - }); - }); + {% block jsdomready %}{%endblock%} }); </script> </body> |