mirror of
https://github.com/onkelbeh/cheatsheets.git
synced 2025-10-16 23:47:47 +02:00
22 lines
391 B
HTML
22 lines
391 B
HTML
---
|
|
html_class: home
|
|
---
|
|
{% include head.html %}
|
|
|
|
<div class='blog-header'>
|
|
<div>
|
|
<h1><a href="/">{{ site.meta.name }}</a></h1>
|
|
</div>
|
|
</div>
|
|
|
|
<div class='pages-list'>
|
|
{% for page in site.pages %}
|
|
<a href=".{{ page.url }}">
|
|
<span class='title'>{{ page.title }}</span>
|
|
<span class='date'>{{ page.url }}</span>
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% include foot.html %}
|