diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/templates/base.html b/templates/base.html index 2e4eb8b..9aecc6a 100644 --- a/templates/base.html +++ b/templates/base.html @@ -16,7 +16,7 @@ title="Luxagraf RSS feed" href="https://luxagraf.net/rss/"> {%block stylesheet%}<link rel="stylesheet" - href="/media/screenv11.css?{% now "u" %}" + href="/media/screenv11.min.css?{% now "u" %}" media="screen">{%endblock%} {%block extrahead%}{%endblock%} </head> @@ -28,8 +28,8 @@ </div> <nav> <a class="nav-item smcaps" href="{% url "jrnl:list" %}" title="Stories of life on the road.">Jrnl</a> - <a class="nav-item smcaps" href="/essays/" title="Life and how to live it">Essays</a> - <a class="nav-item smcaps" href="{% url "photo_essay:list" %}" title="Photo essays">Photos</a> + <!--<a class="nav-item smcaps" href="/essays/" title="Life and how to live it">Essays</a> + <a class="nav-item smcaps" href="{% url "photo_essay:list" %}" title="Photo essays">Photos</a>--> <a class="nav-item smcaps" href="/about" title="About Scott">About</a> </nav> </header> @@ -49,7 +49,8 @@ <span class="h-card"><a class="p-name u-url" href="https://luxagraf.net/">Scott Gilbertson</a><data class="p-nickname" value="luxagraf"></data></span>. </p> </footer> -{% block js %}<script> +{% block js %} +<script> function isOdd(num) { return num % 2;} document.addEventListener("DOMContentLoaded", function(event) { var today = new Date(); @@ -59,5 +60,6 @@ document.addEventListener("DOMContentLoaded", function(event) { slogan.innerHTML = "Safety Third"; } }); -</script>{% endblock%}</body> +</script> +{% endblock%}</body> </html> |