mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 11:00:32 +00:00
24 lines
436 B
HTML
24 lines
436 B
HTML
---
|
|
layout: default
|
|
---
|
|
<article>
|
|
|
|
<header>
|
|
<h1>{{ page.title | escape }}</h1>
|
|
<p class="text-muted">
|
|
<time datetime="{{ page.date | date_to_xmlschema }}">
|
|
{%- assign date_format = "%b %-d, %Y" -%}
|
|
{{ page.date | date: date_format }}
|
|
</time>
|
|
{%- if page.author -%}
|
|
• {{ page.author }}
|
|
{%- endif -%}
|
|
</p>
|
|
</header>
|
|
|
|
<section>
|
|
{{ content }}
|
|
</section>
|
|
|
|
</article>
|