Xéfir Destiny
5a4575abf5
All checks were successful
continuous-integration/drone/push Build is passing
60 lines
2.1 KiB
Django/Jinja
60 lines
2.1 KiB
Django/Jinja
{% extends "base.html.j2" %}
|
|
{% block content %}
|
|
<div id="box">
|
|
<div id="avatars">
|
|
<img src="{{ bot.display_avatar }}"
|
|
alt="{{ _('Bot Logo') }}"
|
|
width="80"
|
|
height="80"/>
|
|
</div>
|
|
<h1>{{ bot.display_name }}</h1>
|
|
<h2>{{ _('The discord scheduled event calendar generator') }}</h2>
|
|
<hr />
|
|
<h3>{{ _('This will allow you to:') }}</h3>
|
|
<ul id="scopes">
|
|
<li>
|
|
<i class="fa fa-custom-circle fa-check"></i>
|
|
{{ _('Subscribe to a calendar on Google, Yahoo, Outlook, Apple or any ICS complient software') }}
|
|
</li>
|
|
<li>
|
|
<i class="fa fa-custom-circle fa-times"></i>
|
|
{{ _('Throwing you to a new isekai world') }}
|
|
</li>
|
|
</ul>
|
|
<hr />
|
|
<ul id="details">
|
|
<li>
|
|
<a href="https://discord.com/users/133305654512320513" target="_blank">
|
|
<i class="fa fa-user-plus"></i>
|
|
{{ _('Add author on Discord') }}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="http://www.wtfpl.net" target="_blank">
|
|
<i class="fa fa-book"></i>
|
|
{{ _('Read the licence') }}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://git.crystalyx.net/Xefir/Divent" target="_blank">
|
|
<i class="fa fa-code-fork"></i>
|
|
{{ _('View the source code') }}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="https://hub.docker.com/r/xefir/divent" target="_blank">
|
|
<i class="fa fa-cubes"></i>
|
|
{{ _('Host it yourself') }}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<i class="fa fa-heartbeat"></i>
|
|
{{ _('Next castastrophic life failure in about %days% days') | replace('%days%', days_before_failure) }}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div id="buttons">
|
|
<a href="{{ url_for('login') }}">{{ _("Let's go!") }}</a>
|
|
</div>
|
|
{% endblock content %}
|