32 lines
834 B
HTML
32 lines
834 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Blog</title>
|
|
<meta charset="utf-8" />
|
|
<link rel="stylesheet" href="/bakedres/simple.css" />
|
|
<#META_TAGS>
|
|
</head>
|
|
<body>
|
|
<h1>Blog posts</h1>
|
|
<p>
|
|
This page aggregates all blog posts.
|
|
<a href="/blog-welcome.md">Welcome (or not) post</a>
|
|
</p>
|
|
<ul>
|
|
<#BLOG_POSTS>
|
|
</ul>
|
|
<footer>
|
|
<div style="float: left;">
|
|
<a href="/">HOME</a>
|
|
<span>COMMIT: <#COMMIT></span>
|
|
<span>Running since: <#RUNNING_SINCE></span>
|
|
</div>
|
|
</footer>
|
|
|
|
<#ifdef HOTRELOAD>
|
|
<script src="/bakedres/hotreload.js"></script>
|
|
<#endif>
|
|
<script src="/bakedres/theme.js"></script>
|
|
</body>
|
|
</html>
|