27 lines
530 B
HTML
27 lines
530 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ page.lang | default: site.lang | default: en }}">
|
|
|
|
{%- include head.html -%}
|
|
|
|
<body>
|
|
<div class="container">
|
|
|
|
{%- include header.html -%}
|
|
<article class="post">
|
|
<h1>{{ page.title }}</h1>
|
|
|
|
<div class="entry">
|
|
{{ content }}
|
|
</div>
|
|
|
|
<div class="date">
|
|
Written on {{ page.date | date: "%B %e, %Y" }}
|
|
</div>
|
|
|
|
</article>
|
|
|
|
{%- include footer.html -%}
|
|
</div>
|
|
</body>
|
|
|
|
</html> |