blob: 72cbbd11da9f921ad9dd5067e8b0dc9ed7ae35bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% extends 'base.html' %}
{% load typogrify_tags %}
{% block sitename %}
<head itemscope itemtype="http://schema.org/WebSite">
<title itemprop='name'>Libregraf: Free software, open source, and web nerdery</title>
<link rel="canonical" href="https://libregraf.net/" itemprop="url" />
{% endblock %}
{%block bodyid%}id="home" class="archive home"{%endblock%}
{% block content %}
<div class="content-narrow">
{% for obj in object_list %}
<article class="h-entry hentry" itemscope itemType="http://schema.org/Article">
<span class="date dt-published hed-tertiary">{{obj.pub_date|date:"F d, Y"}}</span>
<h3 class="p-name hed-primary"><a class="u-repost-of" href="{{obj.link_url}}" title="Read the original story">{{obj.title|safe|smartypants|widont}}</a> <a class="star u-url" href="{{obj.get_absolute_url}}">★</a></h3>
<div class="p-summary">{{obj.body_html|safe|smartypants}}</div>
</article>
{% endfor %}
</div>
{% endblock %}
|