summaryrefslogtreecommitdiff
path: root/_includes/header.html
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-07-04 12:30:13 +0200
committerPatrick Spek <p.spek@tyil.nl>2020-07-04 12:30:13 +0200
commitf8555ce79642f82ef3a2f7dda1fc4ee017a034e0 (patch)
tree24b323ff63f438e50a5083190f8a21fd46ec9853 /_includes/header.html
parentb4ae74946dd1f845ea0767cd9bcf3d7a81984e1b (diff)
Alter the templates to render slightly better HTML
Diffstat (limited to '_includes/header.html')
-rw-r--r--_includes/header.html6
1 files changed, 2 insertions, 4 deletions
diff --git a/_includes/header.html b/_includes/header.html
index 2335d7c..9c0a8e5 100644
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -1,10 +1,8 @@
<header id="site-header">
<div class="container">
<nav>
- <a href="{{ site.baseurl }}/" class="brand-name">{{ site.title }}</a>
- {% for collection in site.collections %}
- <a href="{{ collection.label | prepend: "/" | prepend: site.baseurl }}/">{{ collection.label | capitalize }}</a>
- {% endfor %}
+ <a href="{{ site.baseurl }}/" class="brand-name">{{ site.title }}</a>{% for collection in site.collections %}
+ <a href="{{ collection.label | prepend: "/" | prepend: site.baseurl }}/">{{ collection.label | capitalize }}</a>{% endfor %}
<a href="{{ "/support" | prepend: site.baseurl }}/">Support me</a>
</nav>
</div>