From 0561f173b01969eac1f4c2aebe2a4de3952e3e65 Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Wed, 17 Mar 2021 16:56:29 +0100 Subject: Add category pages --- gen | 19 ++++++++++++ wpisy/c/oboz2020.html.raw | 73 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 92 insertions(+) create mode 100644 wpisy/c/oboz2020.html.raw diff --git a/gen b/gen index b62aae0..9a86fc5 100755 --- a/gen +++ b/gen @@ -7,6 +7,8 @@ DESCRIPTION="" rm -r dest || true mkdir dest +categories_dir=$(mktemp -d) + # This is useful when deploying on netlify. Thanks to storing compiled binaries # in this folder they will be cached and restored. export PATH="$PWD/.jekyll-cache:$PWD/tools:$PATH" @@ -88,6 +90,14 @@ for f in `find wpisy/kronika/20* -name '*.md' | sort -r`; do [ -z $photo ] && photo="/assets/default_tree.jpg" description=`grep -E "^[A-Z]" $f | grep -v "|" | head -n 1 | cut -d" " -f1-30` categories=`sed -n '/---/,/---/p' $f | grep " - " | sed 's/[^a-zA-Z0-9]//g'` + + for c in "$categories"; do + [ -z $c ] && continue + + [ -f "$categories_dir/$c" ] || echo '
' > "$categories_dir/$c" + post_link "$path" "$title" "$photo" "$description" >> "$categories_dir/$c" + done + post_link "$path" "$title" "$photo" "$description" >> wpisy/kronika.html [ $i -lt 20 ] && \ post_rss "$path" "$title" "$photo" "$description" "$f" >> dest/kronika/rss.xml @@ -98,8 +108,17 @@ done echo "
" >> wpisy/kronika.html echo "Czytaj więcej..." >> wpisy/index.html echo "" >> dest/kronika/rss.xml +for cate in $categories_dir/*; do + c=$(basename $cate) + echo "" >> "$cate" + [ -f "wpisy/c/$c.html.raw" ] && cp "wpisy/c/$c.html.raw" "wpisy/c/$c.html" + # [ -f "wpisy/c/$c.md.raw" ] && cp "wpisy/c/$c.md.raw" "wpisy/c/$c.md" + sed -e "/%posts%/r$cate" -i "wpisy/c/$c.html" +done ./ssg5 wpisy dest "$TITLE" "$URL" rm wpisy/index.html +rm wpisy/c/*.html rm dest/index.html.raw +rm dest/c/*.raw cp -r static/* dest diff --git a/wpisy/c/oboz2020.html.raw b/wpisy/c/oboz2020.html.raw new file mode 100644 index 0000000..733b5f2 --- /dev/null +++ b/wpisy/c/oboz2020.html.raw @@ -0,0 +1,73 @@ + +
+ + +
+ +
+

+ To się działo na obozie +

+
+ +
+
-- cgit 1.4.1