43 lines
1.3 KiB
HTML
43 lines
1.3 KiB
HTML
{% import "macros.html" as macros %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}{{ config.title }}{% endblock %}</title>
|
|
<link rel="alternate" type="application/atom+xml" title="Atom" href="{{ get_url(path="/posts/atom.xml", trailing_slash=false) }}">
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="wrap">
|
|
<a href="{{ config.base_url }}" class="title">{{ config.title }}</a>
|
|
<nav>
|
|
{% if config.extra.repository_url %}
|
|
<a href="{{ config.extra.repository_url }}">Source</a>,
|
|
{% endif %}
|
|
<a href="{{ get_url(path="/posts/atom.xml", trailing_slash=false) }}">RSS/Atom</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
<div class="wrap grid">
|
|
<aside>
|
|
<ul>
|
|
{% for item in config.extra.nav %}
|
|
<li><a href="{{ get_url(path=item.path, trailing_slash=true) }}">{{ item.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
<span class="title">Categories</span>
|
|
{{ macros::list_taxonomy(kind="categories") }}
|
|
</aside>
|
|
<main>
|
|
{% block content %}
|
|
{{ macros::list_posts(section="posts", count=config.extra.latest_posts_count) }}
|
|
<a href="{{ get_url(path="/posts/") }}">All Posts »</a>
|
|
{% endblock %}
|
|
</main>
|
|
</div>
|
|
{% block script %}{% endblock %}
|
|
</body>
|
|
</html>
|