Files
findings/templates/home.html
usernames122 877a246134 first commit
2025-08-10 23:42:02 +02:00

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 %}