Here goes something

This commit is contained in:
Juno Takano 2025-09-03 22:19:25 -03:00
commit dab293cdd5
6 changed files with 59 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
public

7
config.toml Normal file
View file

@ -0,0 +1,7 @@
base_url = "localhost"
compile_sass = false
build_search_index = true
[markdown]
highlight_code = false

17
templates/base.html Normal file
View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>Incandescência</title>
</head>
<body>
<section class="section">
<div class="container">
{% block content %} {% endblock content %}
</div>
</section>
</body>
</html>

12
templates/index.html Normal file
View file

@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">
Incandescência
</h1>
<nav>
<ul>
<li><a href="/poesia">Poesia</a></li>
</ul>
</nav>
{% endblock content %}

9
templates/poema.html Normal file
View file

@ -0,0 +1,9 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ page.title }}
</h1>
<p class="subtitle"><strong>{{ page.date }}</strong></p>
{{ page.content | safe }}
{% endblock content %}

13
templates/poesia.html Normal file
View file

@ -0,0 +1,13 @@
{% extends "base.html" %}
{% block content %}
<h1 class="title">
{{ section.title }}
</h1>
<ul>
{% for page in section.pages %}
<li>{{ page.date }} &mdash; <a href="{{ page.permalink | safe }}">{{ page.title | default(value="Sem título") }}</a></li>
{% endfor %}
</ul>
{% endblock content %}