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

33 lines
838 B
HTML
Raw Normal View History

2016-05-27 15:16:13 +01:00
{% extends "base.html" %}
{% block htmltitle %}
{{ article.title }}
{% endblock %}
2016-06-12 11:34:20 +01:00
{% block metadata %}
2016-07-29 08:09:02 +01:00
{{ article.metatags }}
2016-06-12 11:34:20 +01:00
{% endblock %}
2016-05-27 15:16:13 +01:00
{% block content %}
{% include 'extras/header.html' with context %}
2016-05-27 15:16:13 +01:00
<section>
<div class="container">
2016-05-27 15:56:08 +01:00
<p class="text-right small">
Updated: {{ article.date|datetime }}
2016-05-27 15:16:13 +01:00
</p>
{{ article.content }}
</div>
</section>
<div class="container text-center">
<div class="btn-group">
{% if article.download_link %}
2016-05-27 18:01:49 +01:00
<a class="btn btn-primary btn-xl" href="{{ article.download_link }}">Download {{ article.title }}</a>
2016-05-27 15:16:13 +01:00
{% endif %}
2016-05-27 15:16:13 +01:00
{% 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 %}