Fix #2 List of tags

This commit is contained in:
Alexis Hassler
2019-05-04 21:52:13 +02:00
parent 6773809206
commit 8d635a3f71
12 changed files with 101 additions and 49 deletions

View File

@@ -2,20 +2,18 @@
<head>
{% include head.html %}
</head>
<body>
<div id="main">
<h1 id="title">{{ page.title }}</h1>
<div id="content">{{ content | inject_anchors }}</div>
</div>
<div id="menu">
{% include logo.html %}
{% include user.html %}
{% include toc.html %}
{% include links.html %}
{% include tags.html %}
{%- include logo.html -%}
{%- assign menu = page.menu | default: layout.menu -%}
{%- for item in menu -%}
{%- include {{item}}.html -%}
{%- endfor -%}
</div>
{% include footer.html %}
</body>
</html>