robosats/docs/_layouts/home.html
Reckless_Satoshi 86447ea193
Add Jekyll markdown site as GH page (#136)
* Add Jekyll docker service and init site

* Use minimal mistakes theme

* Create splash. Add first pages and toolbars
2022-05-14 20:45:28 +00:00

23 lines
515 B
HTML

---
layout: archive
---
{{ content }}
<h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}</h3>
{% if paginator %}
{% assign posts = paginator.posts %}
{% else %}
{% assign posts = site.posts %}
{% endif %}
{% assign entries_layout = page.entries_layout | default: 'list' %}
<div class="entries-{{ entries_layout }}">
{% for post in posts %}
{% include archive-single.html type=entries_layout %}
{% endfor %}
</div>
{% include paginator.html %}