Make project REUSE compliant
initial commit a lot more stuff Make project REUSE compliant start working on implementing audio
This commit is contained in:
commit
7bc11e49a4
136 changed files with 3218 additions and 0 deletions
30
templates/index.html
Normal file
30
templates/index.html
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{% 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue