18 lines
564 B
HTML
18 lines
564 B
HTML
{%extends "main_layout.html"%}
|
|
|
|
{%block content %}
|
|
<div class="home_blurb">
|
|
<p>{{site_name}} 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>
|
|
<ol>
|
|
{% for user in u_list %}
|
|
<li><a href="~{{user}}">{{user}}</a></li>
|
|
{% endfor %}
|
|
</ol>
|
|
</div>
|
|
{%endblock%}
|