change to jekyll page engine

This commit is contained in:
Hiajen Hiajen 2022-01-15 22:29:17 +01:00
parent ba8b789f12
commit 74cfbc1488
19 changed files with 353 additions and 258 deletions

View file

@ -0,0 +1,9 @@
<div class="col-3 col-s-3 menu">
<ul>
{% for item in site.data.navigation %}
<a href="{{ item.link }}">
<li {% if page.url == item.link %}class="current"{% endif %}>{{ item.name }}</li>
</a>
{% endfor %}
</ul>
</div>