website/templates/index.html
Ncam Gnrvngu 7bc11e49a4
Make project REUSE compliant
initial commit

a lot more stuff

Make project REUSE compliant

start working on implementing audio
2025-05-28 17:07:49 +02:00

30 lines
856 B
HTML

{% extends "base.html" %}
{% block title %}Ncam Gnrvngu{% endblock title %}
{% block content %}
<div id="greeter">
<img src="/logo.jpg">
<div>
<h1>Hey I'm Ncam Gnrvngu</h1>
<h2>I'm a programmer and musician</h3>
</div>
</div>
<div id="categories">
{% for subsection_path in section.subsections %}
{% set subsection = get_section(path=subsection_path) %}
<div>
<h3>{{ subsection.title }}</h3>
<ul>
{% for page in subsection.pages %}
<li>
<a href="{{ page.permalink | safe }}">{{page.title}}</a>
<p>
{{ page.summary | safe }}
<p>
</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
{% endblock content %}