commit dab293cdd507393f695d9d80456786ecbe82db4b Author: jutty Date: Wed Sep 3 22:19:25 2025 -0300 Here goes something 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 %} +