33 lines
994 B
HTML
33 lines
994 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block metadata %}
|
|
<meta name="description" content="{% if article.description %}{{ article.description }}{% else %}{{ BIO }}{% endif %}">
|
|
<meta property="og:description"
|
|
content="{% if article.description %}{{ article.description }}{% else %}{{ BIO }}{% endif %}">
|
|
<meta property="og:title" content="{{ article.title }}"/>
|
|
<meta property="og:type" content="article"/>
|
|
<meta property="og:url" content="{{ SITEURL }}/{{ article.url }}"/>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="post">
|
|
<h1 class="post-title">{{ article.title }}</h1>
|
|
<span class="post-date">{{ article.locale_date }}</span>
|
|
THIS IS A PROJECT NOT AN ARTICLE!
|
|
{{ article.content }}
|
|
|
|
{% if article.tags %}
|
|
<span class="post-tags">
|
|
Tags:
|
|
<ul>
|
|
{% for tag in article.tags %}
|
|
<li><a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</span>
|
|
{% endif %}
|
|
|
|
{% include 'fragments/disqus.html' %}
|
|
</div>
|
|
{% endblock %}
|