lyadmin/templates/index.html

18 lines
559 B
HTML
Raw Normal View History

2020-11-26 01:14:59 -05:00
{%extends "main_layout.html"%}
2020-11-21 20:13:47 -05:00
{%block content %}
<div class="home_blurb">
2020-11-26 01:14:59 -05:00
<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><a href="/req">sign up</a></p>
<p><a href="/rules">rules</a></p>
<p><a href="https://git.lain.church/gashapwn/lyadmin">git</a></p>
<p><h3>users</h3></p>
2020-11-21 20:13:47 -05:00
<ol>
2020-11-26 01:53:20 -05:00
{% for user in u_list %}
<li><a href="~{{user}}">{{user}}</a></li>
{% endfor %}
2020-11-21 20:13:47 -05:00
</ol>
</div>
{%endblock%}