mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 19:42:37 +02:00
48 lines
1.9 KiB
HTML
48 lines
1.9 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ article.title }} - {{ super() }}{% endblock %}
|
|
{% block content %}
|
|
<header>
|
|
{% if article.category == "Lectures" %}
|
|
<div class="book-container">
|
|
<div class="book">
|
|
<h1 class="post-title">
|
|
<a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a><small>
|
|
<br />
|
|
par {{ article.author }}</small>
|
|
</h1>
|
|
{% if article.headline %}
|
|
<p>
|
|
<em>{{ article.headline }}</em>
|
|
</p>
|
|
{% endif %}
|
|
<time datetime="{{ article.date.isoformat() }}">Lu en {{ article.date | strftime("%B %Y") }}</time>
|
|
</div>
|
|
{% if article.category == "Lectures" and article.isbn_cover %}
|
|
<div class="book-cover">
|
|
<img src="{{ SITEURL }}/{{ article.isbn_cover }}" />
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% else %}
|
|
<h1 class="post-title">{{ article.title }}</h1>
|
|
{% if article.headline %}
|
|
<p>
|
|
<em>{{ article.headline }}</em>
|
|
</p>
|
|
{% endif %}
|
|
<time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>
|
|
{% endif %}
|
|
</header>
|
|
<article>
|
|
{{ article.content }}
|
|
{% if article.tags %}
|
|
<p>
|
|
{% for tag in article.tags %}
|
|
<a href="{{ SITEURL }}/{{ tag.url }}">#{{ tag }}</a>
|
|
{% if not loop.last %},{% endif %}
|
|
{% endfor %}
|
|
- Posté dans la catégorie <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
|
|
</p>
|
|
{% endif %}
|
|
</article>
|
|
{% endblock %}
|