blog/src/index.liquid

31 lines
558 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>
<div class="posts">
{%- for post in collections.all -%}
<div class="post">
<h2 class="post__title">{{ post.data.title }}</h2>
</div>
{%- endfor -%}
</div>
</main>
</body>
</html>