first commit
This commit is contained in:
18
templates/home.html
Normal file
18
templates/home.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<!-- 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 %}
|
||||
Reference in New Issue
Block a user