blog/src/index.liquid

31 lines
622 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 == "post" -%}
<section class="post">
<header>
<span>Posted on {{ post.date | formatDate }}</span>
</header>
{{ post.content }}
</section>
{%- endif -%}
{%- endfor -%}
</main>
</body>
</html>