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

37 lines
985 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 %}
2017-01-13 17:35:32 +00:00
{% include 'extras/header.html' with instance=article %}
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">
2016-09-11 12:57:16 +01:00
Updated: {{ article.date|datetime }}
2016-05-27 15:16:13 +01:00
</p>
{{ article.content }}
</div>
</section>
2017-01-15 14:53:16 +00:00
{% if article.download_link or article.repo %}
2017-01-15 14:12:05 +00:00
<section class="text-center">
<div class="container">
<div class="btn-group">
{% if article.download_link %}
<a class="btn btn-primary btn-xl" href="{{ article.download_link }}">Download {{ article.title }}</a>
{% endif %}
2017-01-15 14:12:05 +00: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>
</section>
{% endif %}
2016-05-27 15:16:13 +01:00
{% endblock %}