2019-03-27 23:40:21 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="nl">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8"/>
|
|
|
|
|
|
|
|
<title>Zeus WPI-quotes</title>
|
|
|
|
<meta name="author" content="Zeus WPI"/>
|
|
|
|
<meta name="description" content="Epische quotes van Zeus WPI-leden"/>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="quotes.css"/>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<main>
|
|
|
|
<h1><a href="#">Zeus WPI-quotes</a></h1>
|
|
|
|
|
|
|
|
{% for quote in quotes %}
|
|
|
|
<blockquote id="{{ quote.slur() }}">
|
|
|
|
<span class="quote">{{ quote.quote }}</span>
|
|
|
|
|
|
|
|
<span class="attribution">
|
|
|
|
<span class="author-time">
|
|
|
|
{% if quote.quotee %}
|
|
|
|
<span role="author">{{ quote.quotee }}</span>,
|
|
|
|
{% endif %}
|
|
|
|
<a href="#{{ quote.slur() }}" class="time">
|
|
|
|
<time datetime="{{ quote.created_at_machine() }}">{{ quote.created_at_human() }}</time>
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
{% if quote.quoter %}
|
|
|
|
<span class="quoted-by">
|
|
|
|
(gequotet door <span role="quoter">{{ quote.quoter }}</span>)
|
|
|
|
</span>
|
|
|
|
{% endif %}
|
|
|
|
</span>
|
|
|
|
</blockquote>
|
|
|
|
{% endfor %}
|
2018-10-03 01:18:00 +02:00
|
|
|
</body>
|
|
|
|
</html>
|