19 lines
290 B
HTML
19 lines
290 B
HTML
|
---
|
||
|
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>
|