mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 19:42:37 +02:00
31 lines
721 B
HTML
31 lines
721 B
HTML
{% extends "base.html" %}
|
|
{% block head %}
|
|
{{ super() }}
|
|
{% for keyword in article.keywords %}
|
|
<meta name="keywords" contents="{{keyword}}" />
|
|
{% endfor %}
|
|
|
|
{% for description in article.description %}
|
|
<meta name="description" contents="{{description}}" />
|
|
{% endfor %}
|
|
|
|
{% for tag in article.tags %}
|
|
<meta name="tags" contents="{{tag}}" />
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block title %}{{ article.title }} - {{ SITENAME }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="posts">
|
|
<div class="post">
|
|
<h1 class="post-title">
|
|
{{ article.title }}
|
|
</h1>
|
|
<span class="post-date">{{ article.locale_date | capitalize }}</span>
|
|
|
|
{{ article.content }}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|