Queerscriptors.org/templates/project.html

35 lines
1.6 KiB
HTML
Raw Permalink Normal View History

2022-09-22 21:55:25 +00:00
{% extends "layout.html" %}
2022-11-01 10:40:23 +00:00
{% 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' %}
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">
2022-11-03 19:43:18 +00:00
<h3 class="my-3">{{ _("Game Description") }}</h3>
{{this.body}}
2022-11-03 19:43:18 +00:00
<div class="w-100 text-center mb-5">
2022-11-02 10:56:23 +00:00
<div class="mx-auto">
<a href="{{this.website}}" class="btn btn-primary"><i class="fa fa-external-link" aria-hidden="true"></i> {{ _("Download") }}</a>
2022-09-22 23:06:38 +00:00
</div>
2022-09-22 22:28:52 +00:00
</div>
{% if this.weblate %}
2022-11-03 19:43:18 +00:00
<h3 class="my-3">{{ _("Weblate status") }}</h3>
<a href="https://littleroot.net/weblate/engage/{{ this.weblate }}/{% if this.alt != "en" %}{{this.alt}}/{% endif %}">
<img src="https://littleroot.net/weblate/widgets/{{ this.weblate }}/{% if this.alt != "en" %}{{this.alt}}{% else %}-{% endif %}/multi-auto.svg" alt="Translation status">
2022-11-03 19:43:18 +00:00
</a>
2022-11-03 19:46:11 +00:00
<div class="mt-3 text-center">
<a href="https://littleroot.net/weblate/engage/{{ this.weblate }}/{% if this.alt != "en" %}{{this.alt}}/{% endif %}" class="btn btn-primary mb-2"><i class="fa fa-language" aria-hidden="true"></i> {{ _("Translate") }}</a>
2022-11-03 19:43:18 +00:00
</div>
{% endif %}
2022-09-22 22:28:52 +00:00
</div>
</div>
</div>
2022-09-22 21:55:25 +00:00
{% endblock %}