lyadmin/templates/index.html
2020-11-26 06:53:20 +00:00

18 lines
455 B
HTML

{%extends "main_layout.html"%}
{%block content %}
<div class="home_blurb">
<p>lingy.in is a public unix / tilde instance for lainons</p>
<p><b>current thread: </b><a href="https://lainchan.org/tech/res/34563.html">https://lainchan.org/tech/res/34563.html</a></p>
<p>sign up</p>
<p>rules</p>
<p>git</p>
<p>users</p>
<ol>
{% for user in u_list %}
<li><a href="~{{user}}">{{user}}</a></li>
{% endfor %}
</ol>
</div>
{%endblock%}