A full redesign of The Plain Libre Jekyll theme
https://software.franco.net.eu.org/frnmst/the-flux-of-thought
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.
24 lines
485 B
24 lines
485 B
--- |
|
layout: default |
|
--- |
|
|
|
<article> |
|
|
|
<div class="center"> |
|
<h1>{{ page.title }}</h1> |
|
<time>First written on {{ page.date | date: '%B %-d, %Y' }}</time> |
|
{% assign page_date = page.date | date: '%F' %} |
|
{% assign page_updated = page.updated | date: '%F' %} |
|
{% if page_date != page_updated %} |
|
<br /> |
|
<br /> |
|
<time>Last updated on {{ page.updated | date: '%B %-d, %Y' }}</time> |
|
{% endif %} |
|
</div> |
|
|
|
<div class="divider"></div> |
|
|
|
{{ content }} |
|
|
|
</article> |
|
|
|
|