mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2026-05-26 20:49:55 +00:00
22 lines
975 B
Django/Jinja
22 lines
975 B
Django/Jinja
{% extends "_layout.html.j2" %}
|
|
|
|
{%- block head -%}
|
|
<link rel="stylesheet" href="/_continuwuity/resources/index.css">
|
|
{%- endblock -%}
|
|
|
|
{%- block content -%}
|
|
<div class="panel">
|
|
<h1>
|
|
Welcome to <a class="project-name" href="https://continuwuity.org">Continuwuity</a>!
|
|
</h1>
|
|
<p>Continuwuity is successfully installed and working.</p>
|
|
{%- if first_run %}
|
|
<p>To get started, <em>check the server logs</em> for instructions on how to create the first account.</p>
|
|
<p>For support, take a look at the <a href="https://continuwuity.org/introduction">documentation</a> or join the <a href="https://matrix.to/#/#continuwuity:continuwuity.org?via=continuwuity.org&via=ellis.link&via=explodie.org&via=matrix.org">Continuwuity Matrix room</a>.</p>
|
|
{%- else %}
|
|
<p>To get started, <a href="https://matrix.org/ecosystem/clients">choose a client</a> and connect to <code>{{ server_name }}</code>.</p>
|
|
{%- endif %}
|
|
</div>
|
|
|
|
{%- endblock content -%}
|