1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/theme/templates/projects.html
RealOrangeOne f699a17eff
added more templates
I should really actually write these somewhen...
2016-07-19 17:32:07 +01:00

34 lines
937 B
HTML

{% extends "base.html" %}
{% block htmltitle %}
{{ article.title }}
{% endblock %}
{% block metadata %}
{% for tag, value in article.ogtags %}
<meta property="{{ tag }}" content="{{ value|striptags|e }}" />
{% endfor %}
{% endblock %}
{% block content %}
{% include 'extras/header.html' with context %}
<section>
<div class="container">
<p class="text-right small">
Updated: {{ article.date|datetime }}
</p>
{{ article.content }}
</div>
</section>
<div class="container text-center">
<div class="btn-group">
{% if article.download_link %}
<a class="btn btn-primary btn-xl" href="{{ article.download_link }}">Download {{ article.title }}</a>
{% endif %}
{% if article.repo %}
<a class="btn btn-github btn-xl" href="{{ article.repo }}"><i class="fa fa-github fa-lg"></i> View on Github</a>
{% endif %}
</div>
</div>
{% endblock %}