1
0
mirror of https://github.com/minoplhy/crappy-jekyll.git synced 2025-04-08 13:48:01 +00:00

19 lines
290 B
HTML
Raw Normal View History

---
layout: default
---
<div class="home">
{%- if page.title -%}
<h1 class="page-heading">{{ page.title }}</h1>
{%- endif -%}
{{ content }}
{% if site.paginate %}
{% assign posts = paginator.posts %}
{% else %}
{% assign posts = site.posts %}
{% endif %}
</div>