pile/sdbs_pile/pile/templates/front_doc_listing.html

31 lines
No EOL
1.1 KiB
HTML

{% extends "front_base.html" %}
{% block title %}: Filed under "{{ tag.name }}"{% endblock %}
{% block content %}
{% if tag %}
<div class="text tag-text">
<h1>{{ tag.name }}</h1>
<p class="tag-desc">{{ tag.description }}</p>
</div>
{% endif %}
{% for document in documents %}
<div class="text doc-item">
<a class="doc-item-link" href="{{ document.url }}">🔗</a>
<a href="{% url "pile:document" document.id %}">
<div class="doc-item-text">
<h2>{{ document.title }}</h2>
<h3>{{ document.author }} {{ document.published }}</h3>
</div>
</a>
</div>
{% endfor %}
{% endblock %}
{% block meta-og %}
<meta property="og:title" content="The /-\ Pile: Documents under &quot;{{ tag.name }}&quot;"/>
<meta property="og:url" content="{% url "pile:tag" tag.id %}"/>
<meta property="og:description" content="{{ tag.description }}"/>
<meta property="og:type" content="website"/>
{% endblock %}