23 lines
657 B
HTML
23 lines
657 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}Support{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row half-margin">
|
|
<h1>SUPPORT</h1>
|
|
</div>
|
|
<div class="row half-margin">
|
|
<a href="mailto:support@cyberia.club?subject=capsul%20support%20request">support@cyberia.club</a> (private)
|
|
<br>
|
|
<a href="mailto:support@cyberia.club?subject=public%20request">ops@cyberia.club</a> (public)
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block subcontent %}
|
|
<p>
|
|
Please describe your problem or feature request, and we will do our best to get back to you promptly. Thank you very much.
|
|
</p>
|
|
{% endblock %}
|
|
|
|
{% block pagesource %}/templates/support.html{% endblock %}
|