26 lines
529 B
HTML
26 lines
529 B
HTML
---
|
|
layout: default
|
|
---
|
|
{%- assign year = page.date | date: "%Y" -%}
|
|
|
|
{% if page._styles %}
|
|
<style type="text/css">
|
|
{{ page._styles }}
|
|
</style>
|
|
{% endif %}
|
|
|
|
<div class="post">
|
|
|
|
<header class="post-header">
|
|
<h1 class="post-title">{{ page.title }}</h1>
|
|
<p class="post-meta">{{ page.date | date: "%B %-d, %Y" }}{%- if page.author -%} • {{ page.author }}{%- endif -%}{%- if page.meta -%} • {{ page.meta }}{%- endif -%}</p>
|
|
</header>
|
|
|
|
<br/>
|
|
|
|
<article class="post-content">
|
|
{{ content }}
|
|
</article>
|
|
|
|
</div>
|