Queerscriptors.org/templates/project.html

33 lines
1.5 KiB
HTML

{% extends "layout.html" %}
{% block ogpdesc %}{{ this.shortbody }}{% endblock %}
{% block ogptitle %}{{ this.title }} | Queerscriptors{% endblock %}
{% block twitterdesc %}{{ this.shortbody }}{% endblock %}
{% block twittertitle %}{{ this.title }} | Queerscriptors{% endblock %}
{% block page %}
{% include 'header.html' %}
<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>
<p>{{this.shortbody}}</p>
<p>{{this.body}}</p>
<h3 class="my-3">{{ _("Weblate status") }}</h3>
<a class="crop" href="https://littleroot.net/weblate/engage/{{ this.weblate }}/">
<img src="https://littleroot.net/weblate/widgets/{{ this.weblate }}/-/multi-auto.svg" alt="Translation status" />
</a>
<h3 class="my-3">{{ _("Project Details") }}</h3>
<div class="w-100 text-center">
<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>
</div>
</div>
</div>
</div>
{% endblock %}