From dab293cdd507393f695d9d80456786ecbe82db4b Mon Sep 17 00:00:00 2001 From: jutty Date: Wed, 3 Sep 2025 22:19:25 -0300 Subject: [PATCH] Here goes something --- .gitignore | 1 + config.toml | 7 +++++++ templates/base.html | 17 +++++++++++++++++ templates/index.html | 12 ++++++++++++ templates/poema.html | 9 +++++++++ templates/poesia.html | 13 +++++++++++++ 6 files changed, 59 insertions(+) create mode 100644 .gitignore create mode 100644 config.toml create mode 100644 templates/base.html create mode 100644 templates/index.html create mode 100644 templates/poema.html create mode 100644 templates/poesia.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a48cf0d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +public diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..37e71d6 --- /dev/null +++ b/config.toml @@ -0,0 +1,7 @@ +base_url = "localhost" + +compile_sass = false +build_search_index = true + +[markdown] +highlight_code = false diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..2c4b97c --- /dev/null +++ b/templates/base.html @@ -0,0 +1,17 @@ + + + + + + IncandescĂȘncia + + + +
+
+ {% block content %} {% endblock content %} +
+
+ + + diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..8489133 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} + +{% block content %} +

+ IncandescĂȘncia +

+ +{% endblock content %} diff --git a/templates/poema.html b/templates/poema.html new file mode 100644 index 0000000..f0f638e --- /dev/null +++ b/templates/poema.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} + +{% block content %} +

+ {{ page.title }} +

+

{{ page.date }}

+{{ page.content | safe }} +{% endblock content %} diff --git a/templates/poesia.html b/templates/poesia.html new file mode 100644 index 0000000..8887aca --- /dev/null +++ b/templates/poesia.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} + +{% block content %} +

+ {{ section.title }} +

+ +{% endblock content %} +