ramik_dev/templates/posts.html
2024-06-15 15:15:13 -04:00

35 lines
734 B
HTML
Executable File

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="date" content='$date-meta$'>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/static/style.css">
<title>Blog</title>
<style>
ul {
padding: 0;
}
li {
width: 100%;
height: 30px;
list-style: none;
display: flex;
justify-content: left;
align-items: center;
}
</style>
</head>
<body>
<div id="wrapper">
<h1>All my posts: </h1>
<hr>
<ul>
{{& posts }}
</ul>
</div>
</body>
</html>