my_blog/templates/blog/blog.html

43 lines
1.0 KiB
HTML

{% extends "base.html" %}
{% import "macros.html" as macros %}
{% block page_specific_head %}
<link rel="alternate" type="application/rss+xml" href="/feed.rss" title="RSS feed for chmod777's blog" >
{% endblock page_specific_head %}
{% block page_content %}
<main id="page-content">
<aside id="skip-links">
<nav>
<a type="application/rss+xml" href="/feed.rss">RSS feed for this blog</a>
<h3>Posts</h3>
<ul class="link-list">
{% for post in posts %}
<li><a href="#post-card-{{ post.title }}">skip to "{{ post.title | safe }}"</a></li>
{% endfor %}
</ul>
<h3><a href="/blog/archived.html">Archived Posts</a></h3>
<h3>Posts From Blogs That I Read</h3>
<ul class="link-list">
<li><a href=""></a></li>
</ul>
</nav>
</aside>
<div id="main-content">
<section tabindex="0">
<h2>Posts</h2>
{% for post in posts %}
{{ macros::post_card(post=post) }}
{% endfor %}
</section>
<section tabindex="0">
<h2>Posts From Blogs That I Read</h2>
</section>
</div>
</main>
{% endblock page_content %}