mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 19:44:21 +00:00
43 lines
No EOL
948 B
HTML
43 lines
No EOL
948 B
HTML
---
|
|
layout: base
|
|
---
|
|
|
|
<section class="panel panel-box">
|
|
<h2>
|
|
{{ page.title }}
|
|
</h2>
|
|
{{ content }}
|
|
</section>
|
|
|
|
<section class="panel panel-box">
|
|
<h2>
|
|
Latest posts
|
|
</h2>
|
|
<p>
|
|
These are the latest posts in the blog in reverse chronological order.
|
|
</p>
|
|
{% for post in site.posts %}
|
|
{% include post-summary.html %}
|
|
{% endfor %}
|
|
</section>
|
|
|
|
<section class="panel panel-box">
|
|
<h2>
|
|
Posts by tag
|
|
</h2>
|
|
<p>
|
|
These are all the posts in the blog, grouped by their tag.
|
|
</p>
|
|
<section class="chapter">
|
|
{% for tag_pair in site.tags %}
|
|
<section id="tag-{{ tag_pair[0] }}" class="panel panel-box">
|
|
<h3>
|
|
{{ tag_pair[0] }}
|
|
</h3>
|
|
{% for post in tag_pair[1] %}
|
|
{% include post-summary.html %}
|
|
{% endfor %}
|
|
</section>
|
|
{% endfor %}
|
|
</section>
|
|
</section> |