mirror of
https://github.com/minoplhy/crappy-jekyll.git
synced 2024-11-10 20:16:46 +00:00
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>
|