website/templates/index.html
Ncam Gnrvngu ac9a1758d6
All checks were successful
/ build (push) Successful in 33s
/ reuse-compliance (push) Successful in 37s
/ build (pull_request) Successful in 26s
/ reuse-compliance (pull_request) Successful in 10s
new pfp
2025-06-14 18:14:33 +02:00

30 lines
865 B
HTML

{% extends "base.html" %}
{% block title %}Ncam Gnrvngu{% endblock title %}
{% block content %}
<div id="greeter">
<img src="/logo.png">
<div>
<h1>Hey I'm Ncam Gnrvngu</h1>
<h2>I cosplay as 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 %}