lyadmin/templates/index.html

18 lines
455 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>sign up</p>
<p>rules</p>
<p>git</p>
2020-11-21 20:13:47 -05:00
<p>users</p>
<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%}