23 lines
478 B
HTML
23 lines
478 B
HTML
---
|
||
layout: default
|
||
---
|
||
|
||
<main class="container">
|
||
|
||
{% include header.html %}
|
||
|
||
<article class="content">
|
||
|
||
<small class="small">
|
||
{% assign words = content | number_of_words %}
|
||
<time datetime="{{ page.date | date_to_xmlschema }}" class="time">{{ page.date | date_to_string }}</time> – <span class="time time--reading">{{ words | divided_by:180 }} minute read</span>
|
||
</small>
|
||
|
||
{{ content }}
|
||
|
||
</article>
|
||
|
||
{% include footer.html %}
|
||
|
||
</main>
|