base du blog

This commit is contained in:
kumquat 2020-04-11 06:39:38 +02:00
parent 38a07a8b44
commit 20c9b45470
7 changed files with 56 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/public/
/themes/

25
config.toml Normal file
View File

@ -0,0 +1,25 @@
# The URL the site will be built for
base_url = "https://kumquat.tilde.team"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
generate_rss = true
title = "kumquat"
theme = "sam"
[extra]
sam_menu = [
{ text = "blog", link = "/blog" },
{ text = "about", link = "/about" },
{ text = "contact", link = "/contact" },
{ text = "feed", link = "/rss.xml" },
]

4
content/_index.md Normal file
View File

@ -0,0 +1,4 @@
+++
title = "fortunella reads"
template = "index.html"
+++

5
content/about.md Normal file
View File

@ -0,0 +1,5 @@
+++
title = "About"
+++
I'm a kumquat!

6
content/blog/_index.md Normal file
View File

@ -0,0 +1,6 @@
+++
title = "fortunella reads"
template = "section.html"
page_template = "page.html"
sort_by = "date"
+++

9
content/contact.md Normal file
View File

@ -0,0 +1,9 @@
+++
title = "Contact"
+++
## IRC
```
kumquat@irc.tilde.chat
```

5
publish Executable file
View File

@ -0,0 +1,5 @@
#! /bin/bash
zola build && \
rsync -a -c -P -v --delete-before \
public/ kumquat@tilde.team:public_html/