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