nasg/templates/Home.j2.html

39 lines
1.4 KiB
HTML
Raw Permalink Normal View History

2019-01-15 21:28:58 +00:00
{% extends "base.j2.html" %}
{% block title %}{{ post.headline }} - {{ site.name }}{% endblock %}
2019-01-15 21:28:58 +00:00
{% block meta %}
{% set feed = site.url + '/feed/' %}
<meta name="author" content="{{ site.author.name }} <{{ site.author.email }}>" />
<meta name="description" content="{{ post.description|e }}" />
<link rel="canonical" href="{{ site.url }}" />
<link rel="alternate" type="application/rss+xml" title="{{ site.name }} RSS feed" href="{{ feed }}{{ fnames.rss }}" />
<link rel="alternate" type="application/atom+xml" title="{{ site.name }} ATOM feed" href="{{ feed }}{{ fnames.atom }}" />
<link rel="alternate" type="application/json" title="{{ site.name }} JSON feed" href="{{ feed }}{{ fnames.json }}" />
<link rel="feed" title="{{ site.name }} feed" href="http://www.unmung.com/feed?feed={{ feed|urlencode }}" />
2019-01-15 21:28:58 +00:00
{% endblock %}
2019-01-15 21:28:58 +00:00
{% block content %}
<div id="main" class="h-feed hatom">
<div class="section" id="intro">
2019-01-15 21:28:58 +00:00
<div>
{{ post.text }}
2019-01-15 21:28:58 +00:00
</div>
</div>
2019-01-15 21:28:58 +00:00
{% set isFrontPage = 1 %}
<div id="latest">
<h1>Latest entries</h1>
{% for category, post in posts %}
<h2>in:
<a href="{{ category.url|relurl(baseurl) }}">
<svg width="16" height="16"><use xlink:href="#icon-{{ category.name }}" /></svg>
{{ category.name }}
</a>
</h2>
{% include 'meta-article.j2.html' %}
{% endfor %}
</div>
</div>
2019-01-15 21:28:58 +00:00
{% endblock %}