You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
536 B
18 lines
536 B
---
|
|
layout: default
|
|
---
|
|
<center>{{ site.title }}</center>
|
|
{{ content }}
|
|
{% assign contentwonl = content | strip_newlines %} {% unless contentwonl == "" %} <br /> {% endunless %} <!-- add line break if there is any content -->
|
|
|
|
<h4>Posts</h4>
|
|
{%- if site.posts.size > 0 -%}
|
|
<ul>
|
|
{%- for post in site.posts -%}
|
|
<li>
|
|
{%- assign date_format = "%d %B,%Y" -%}
|
|
[ {{ post.date | date: date_format }} ] <a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
|
|
</li>
|
|
{%- endfor -%}
|
|
</ul>
|
|
{%- endif -%}
|
|
|