Queerscriptors.org/templates/project.html

28 lines
1.1 KiB
HTML
Raw Normal View History

2022-09-22 21:55:25 +00:00
{% extends "layout.html" %}
{% block page %}
{% include 'header.html' %}
2022-09-22 22:28:52 +00:00
<div class="container my-5 pt-5">
<h1 class="my-4">{{this.title}}</h1>
<div class="row">
<div class="col-md-8">
<img class="img-fluid" src="{{this.attachments.images.first()|url}}" alt="">
</div>
<div class="col-md-4">
<h3 class="my-3">Project Description</h3>
2022-09-22 22:30:31 +00:00
<p>{{this.body}}</p>
2022-09-22 22:28:52 +00:00
<h3 class="my-3">Weblate status</h3>
2022-09-22 23:06:38 +00:00
<a class="crop" href="https://littleroot.net/weblate/engage/{{ this.weblate }}/">
2022-09-22 22:30:31 +00:00
<img src="https://littleroot.net/weblate/widgets/{{ this.weblate }}/-/multi-auto.svg" alt="Translation status" />
2022-09-22 22:28:52 +00:00
</a>
<h3 class="my-3">Project Details</h3>
<div class="w-100 text-center">
2022-09-22 23:06:38 +00:00
<div class="mx-auto" style="width: 210px;">
<a href="https://littleroot.net/weblate/engage/{{ this.weblate }}/" class="btn btn-primary w-100 mb-2 px-0"><i class="fa fa-language" aria-hidden="true"></i> Translate</a>
<a href="{{this.website}}" class="px-0 btn btn-primary w-100"><i class="fa fa-external-link" aria-hidden="true"></i> Download</a>
</div>
2022-09-22 22:28:52 +00:00
</div>
</div>
</div>
</div>
2022-09-22 21:55:25 +00:00
{% endblock %}