aboutsummaryrefslogtreecommitdiff
path: root/crumbs/templates/components
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2018-01-22 22:46:46 +0100
committerKatharina Fey <kookie@spacekookie.de>2018-01-22 22:46:46 +0100
commit6030c88e98ab643ced4f706b680091322f4d4d77 (patch)
treefb3564324036b02d292a290eee6320c23ed02273 /crumbs/templates/components
parentf9a1509375bb1e05365c0a913efd8babab3ef362 (diff)
Deleting old CSS. Cleaning up project. OMG so many changes
Diffstat (limited to 'crumbs/templates/components')
-rw-r--r--crumbs/templates/components/html_head.html3
-rw-r--r--crumbs/templates/components/navbar_generator.html8
2 files changed, 9 insertions, 2 deletions
diff --git a/crumbs/templates/components/html_head.html b/crumbs/templates/components/html_head.html
index 3499ffa..dc34ab3 100644
--- a/crumbs/templates/components/html_head.html
+++ b/crumbs/templates/components/html_head.html
@@ -4,11 +4,10 @@
{% if type == 'home' %}
<link href="{{ SITEURL }}/theme/css/crumbs.css" rel="stylesheet">
- <link href="{{ SITEURL }}/theme/css/cr_title.css" rel="stylesheet">
+ <link href="{{ SITEURL }}/theme/css/cr_title.css" rel="stylesheet"> {# This contains various overrides #}
{% else %}
<link href="{{ SITEURL }}/theme/css/pygment.css" rel="stylesheet">
<link href="{{ SITEURL }}/theme/css/crumbs.css" rel="stylesheet">
- <link href="{{ SITEURL }}/theme/css/cr_gay_override.css" rel="stylesheet">
{% endif %}
<link href="https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500;subset=cyrillic,latin-ext" rel="stylesheet">
diff --git a/crumbs/templates/components/navbar_generator.html b/crumbs/templates/components/navbar_generator.html
new file mode 100644
index 0000000..07121ca
--- /dev/null
+++ b/crumbs/templates/components/navbar_generator.html
@@ -0,0 +1,8 @@
+<div class="navigation">
+ {% if type == 'home' %}
+ {% include "components/link_generator.html" %}
+ {% else %}
+ {% with title_type='page-title' %} {% include "components/title_text.html" %} {% endwith %}
+ {% include "components/link_generator.html" %}
+ {% endif %}
+</div>