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/templates/projects/project_page.html

28 lines
815 B
HTML
Raw Normal View History

2016-11-25 23:19:29 +00:00
{% extends "base.html" %}
{% load wagtailcore_tags wagtailimages_tags %}
{% block body_class %}template-projectpage{% endblock %}
{% block content %}
2016-12-19 09:32:54 +00:00
{% include 'common/header.html' %}
2016-11-26 13:00:06 +00:00
<section>
<div class="container">
2016-12-03 20:49:24 +00:00
{% include_block page.body %}
2016-11-26 13:00:06 +00:00
</div>
</section>
2016-12-24 19:57:44 +00:00
{% if page.get_download_link or page.project_url %}
<section class="text-center">
<div class="btn-group">
{% if page.get_download_link %}
<a class="btn btn-primary btn-xl" href="{{ page.get_download_link }}">Download {{ page.title }}</a>
{% endif %}
2016-11-25 23:19:29 +00:00
2016-12-24 19:57:44 +00:00
{% if page.project_url %}
<a class="btn btn-github btn-xl" href="{{ page.project_url }}"><i class="fa fa-github fa-lg"></i> View Project</a>
{% endif %}
</div>
</section>
{% endif %}
2016-11-25 23:19:29 +00:00
{% endblock %}