19 lines
486 B
HTML
19 lines
486 B
HTML
<!-- home.html -->
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}Home - LAMINAX.ORG ARG findings{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Welcome to ARG findings!</h1>
|
|
<p>This site is dedicated to sharing the ARG findings at <a href="https://laminax.org">laminax.org</a></p>
|
|
<!--Render latest users-->
|
|
<div class="latest-users">
|
|
<h2>Latest Users</h2>
|
|
<ul>
|
|
{% for user in users %}
|
|
<li>{{ user.username }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|