1
0

Zola init

This commit is contained in:
Emil Miler 2021-12-02 10:44:45 +01:00
commit af83c4db7b
5 changed files with 19 additions and 0 deletions

7
config.toml Normal file
View File

@ -0,0 +1,7 @@
base_url = "https://em.0x45.cz"
title = "em.0x45.cz"
compile_sass = true
build_search_index = false
[markdown]
highlight_code = false

2
content/_index.md Normal file
View File

@ -0,0 +1,2 @@
+++
+++

0
public/style.css Normal file
View File

0
sass/style.scss Normal file
View File

10
templates/index.html Normal file
View File

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title %}{{ config.title }}{% endblock title %}</title>
</head>
<body>
...
</body>
</html>