static/index: add head tag

This commit is contained in:
Luna Mendes 2018-11-21 21:55:57 -03:00
parent b629fcace2
commit 9252f60ee6
1 changed files with 26 additions and 21 deletions

View File

@ -1,25 +1,30 @@
{% block body %} <html>
<center> <head>
<h1> <title>{{ inst_name }} - index</title>
welcome to {{ inst_name }}, a Litecord instance </head>
</h1> <body>
<center>
<h1>
welcome to {{ inst_name }}, a Litecord instance
</h1>
<p> <p>
Litecord is server software that implements Litecord is server software that implements
the Discord API. the Discord API.
</p> </p>
<p> <p>
It supports nodeinfo, despite not being part It supports nodeinfo, despite not being part
in any federated network. in any federated network.
</p> </p>
<p> <p>
<a href="https://gitlab.com/luna/litecord">Litecord source code</a> <a href="https://gitlab.com/luna/litecord">Litecord source code</a>
</p> </p>
<p> <p>
<a href="{{request.protocol}}/nodeinfo/2.0.json">This instance's nodeinfo</a> <a href="{{request.protocol}}/nodeinfo/2.0.json">This instance's nodeinfo</a>
</p> </p>
</center> </center>
{% endblock%} </body>
</html>