blog/src/index.liquid

37 lines
767 B
Text
Raw Normal View History

<!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>
2025-04-16 17:25:02 -04:00
{%- for post in collections.all -%}
{%- if post.data.type == "thought" -%}
<section class="thought">
2025-04-16 17:25:02 -04:00
<header>
<object data="assets/hash.svg" type="image/svg+xml"></object>
An errant thought...
2025-04-16 17:25:02 -04:00
</header>
<div class="content">
{{ post.content }}
</div>
<footer>
Posted on {{ post.date | formatDate }}
</footer>
2025-04-16 17:25:02 -04:00
</section>
{%- endif -%}
{%- endfor -%}
</main>
</body>
</html>