Files
website/templates/post_list.html
2025-07-19 17:25:31 -04:00

36 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Akshay Kolli</title>
<link rel="icon" href="{{ url_for('static', filename='assets/favicon.ico') }}" type="image/x-icon" >
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" type="text/css" >
</head>
<body>
<header><a href="/posts">Posts</a> <a href="/">Home</a></header>
<span class="posts">
<h1 id="posts-title">Posts</h1>
{% if posts|length == 0 %}
<h1>Well this is awkward, I swear I had some posts</h1>
{% endif %}
{% for post in posts %}
<a class="post_a" href="posts/{{ post.post_id}}">
<div id="post_listing" >
<h1>{{ post.metadata.title }}</h1>
<h3>{{ post.metadata.date }}</h3>
<h3>{{ post.metadata.description }}</h3>
</div>
</a>
{% endfor %}
</span>
</body>
</html>