<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>{{ config.site_name }}</title>
<link rel="stylesheet" type="text/css" href="{{ config.base_url }}/public/normalize.min.css" />
<link rel="stylesheet" type="text/css" href="{{ config.base_url }}/public/skeleton.min.css" />
<link rel="stylesheet" type="text/css" href="{{ config.base_url }}/public/style.css" />
</head>
<body class="container">
{% for post in posts %}
<article class="post">
<center>
<header class="post_header">
<h1>
<a href="{{ config.base_url }}/{{ post.file_name }}">{{ post.header["title"] }}</a>
</h1>
<p>Written On <span class="date">{{ post.header["date"] }}</span> By <span class="author">{{ post.header["author"] }}</span></p>
</header>
</center>
<main class="post_body">
{{ post.body | truncate(length=256, end="...") }}
</main>
</article>
{% endfor %}
</body>
</html>