36 lines
767 B
Text
36 lines
767 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<link rel="stylesheet" href="/styles.css">
|
|
<title>Z. Charles Dziura | Weblog</title>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<hgroup class="header__title">
|
|
<h1>This Weblog Belongs to<br>Z. Charles Dziura</h1>
|
|
</hgroup>
|
|
</header>
|
|
|
|
<main>
|
|
{%- for post in collections.all -%}
|
|
{%- if post.data.type == "thought" -%}
|
|
<section class="thought">
|
|
<header>
|
|
<object data="assets/hash.svg" type="image/svg+xml"></object>
|
|
An errant thought...
|
|
</header>
|
|
<div class="content">
|
|
{{ post.content }}
|
|
</div>
|
|
<footer>
|
|
Posted on {{ post.date | formatDate }}
|
|
</footer>
|
|
</section>
|
|
{%- endif -%}
|
|
{%- endfor -%}
|
|
</main>
|
|
</body>
|
|
</html>
|