website/templates/index.html
Ncam Gnrvngu bb0fff2712
All checks were successful
/ build (push) Successful in 31s
/ reuse-compliance (push) Successful in 35s
/ build (pull_request) Successful in 24s
/ reuse-compliance (pull_request) Successful in 9s
reword index page
2025-06-14 14:49:16 +02:00

30 lines
865 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 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 %}