author | Urja Rannikko
<urjaman@gmail.com> 2024-06-29 10:36:08 UTC |
committer | Urja Rannikko
<urjaman@gmail.com> 2024-06-29 10:36:08 UTC |
parent | 5e83ff1e1fb5a1e1cafee6d120140400324c4cbd |
clean-output.sh | +9 | -0 |
content/pages/blog_index.md | +1 | -1 |
content/pages/index.md | +3 | -0 |
mount-output.sh | +2 | -0 |
pelicanconf.py | +11 | -1 |
diff --git a/clean-output.sh b/clean-output.sh new file mode 100755 index 0000000..fc1a7ff --- /dev/null +++ b/clean-output.sh @@ -0,0 +1,9 @@ +#!/bin/sh +cd output +for d in *; do + if [ -L "$d" ]; then + continue + fi + echo $d + rm -r "$d" +done diff --git a/content/pages/blog_index.md b/content/pages/blog_index.md index be6ae29..b16e7d7 100644 --- a/content/pages/blog_index.md +++ b/content/pages/blog_index.md @@ -1,3 +1,3 @@ Title: Blog -save_as: blog_index_dummy.html +save_as: url: blog_index.html diff --git a/content/pages/index.md b/content/pages/index.md index 1604fb5..18fefe4 100644 --- a/content/pages/index.md +++ b/content/pages/index.md @@ -3,6 +3,9 @@ URL: save_as: index.html status: hidden +# Hi, how did you find this? +Just a note that the entire thing here is WIP and not released. Anyways, carry on :) + Hello, yes this is a one-person distro. Let me just show what I've got. diff --git a/mount-output.sh b/mount-output.sh new file mode 100755 index 0000000..0cc708c --- /dev/null +++ b/mount-output.sh @@ -0,0 +1,2 @@ +#!/bin/sh +sshfs webalfs:srv/ output diff --git a/pelicanconf.py b/pelicanconf.py index 8d901af..6ebb68d 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -14,9 +14,19 @@ DEFAULT_DATE = 'fs' DISPLAY_CATEGORIES_ON_MENU = False THEME = './theme' - INDEX_SAVE_AS = 'blog_index.html' + +ARTICLE_URL = 'posts/{date:%Y}/{slug}.html' +ARTICLE_SAVE_AS = 'posts/{date:%Y}/{slug}.html' + +YEAR_ARCHIVE_SAVE_AS = 'posts/{date:%Y}/index.html' +YEAR_ARCHIVE_URL = 'posts/{date:%Y}/' + +ARCHIVES_SAVE_AS = 'posts/index.html' + +DIRECT_TEMPLATES = ['index', 'archives'] + #MENUITEMS = [('Blog',INDEX_SAVE_AS)] # Feed generation is usually not desired when developing