From e6cef37e0c782fe770db20888d99c17d10e2c479 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Thu, 1 Jul 2021 20:11:34 +0200 Subject: Add category system to categorize posts (readme) This commit implements a new category system to categorize posts. Each category can have an unlimited number of nested children categories. A single post don't necessarily need to be in a category, but it can. Each category can have a full content body like posts or pages, so you have enough space to describe the content of your categories. Please note that you need to have at least the following MySQL/MariaDB versions to use the category system, because it uses "WITH RECURSIVE" database queries, the so-called "Common-Table-Expressions (CTE)". MariaDB: 10.2.2 MySQL: 8.0 See: https://mariadb.com/kb/en/with/ See: https://dev.mysql.com/doc/refman/8.0/en/with.html --- theme/default/html/category/item.php | 27 +++++++++++++++++++ theme/default/html/category/list.php | 23 +++++++++++++++++ theme/default/html/category/main.php | 44 +++++++++++++++++++++++++++++++ theme/default/html/main.php | 5 ++++ theme/default/html/post/main.php | 8 ++++++ theme/default/rsrc/css/main.css | 48 +++++++++++++++++++++++++++++++++- theme/default/rsrc/css/main.scss | 50 +++++++++++++++++++++++++++++++++++- 7 files changed, 203 insertions(+), 2 deletions(-) create mode 100644 theme/default/html/category/item.php create mode 100644 theme/default/html/category/list.php create mode 100644 theme/default/html/category/main.php (limited to 'theme/default') diff --git a/theme/default/html/category/item.php b/theme/default/html/category/item.php new file mode 100644 index 0000000..9435581 --- /dev/null +++ b/theme/default/html/category/item.php @@ -0,0 +1,27 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +
+
+

+ + + +

+ + text('posts')?>: – + text('categories')?>: + +
+ +
+ +
+ +
diff --git a/theme/default/html/category/list.php b/theme/default/html/category/list.php new file mode 100644 index 0000000..9fffb2b --- /dev/null +++ b/theme/default/html/category/list.php @@ -0,0 +1,23 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +

text('category_overview')?>

+

text('category_list_title', $PAGINATION['THIS'])?>

+ + +
+ + + +
+ +

text('category_list_empty')?>

+ + + diff --git a/theme/default/html/category/main.php b/theme/default/html/category/main.php new file mode 100644 index 0000000..86b50e0 --- /dev/null +++ b/theme/default/html/category/main.php @@ -0,0 +1,44 @@ +] # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +# # +# [see documentation] # +# # +#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%# +?> +

+ + + + +
+ +
+ + +
+ + + +
+ + +

text('posts')?>

+
text('category_posts_page', $PAGINATION['THIS'])?>
+ +
+ + + +
+ + +
+ text('category_empty')?> +
+ diff --git a/theme/default/html/main.php b/theme/default/html/main.php index e84618b..5a067ef 100644 --- a/theme/default/html/main.php +++ b/theme/default/html/main.php @@ -73,6 +73,11 @@ $BLOGMETA_DESC = escapeHTML($BLOGMETA['DESC']); text('posts')?> +
  • + + text('categories')?> + +
  • text('pages')?> diff --git a/theme/default/html/post/main.php b/theme/default/html/post/main.php index 4b84ed9..328a614 100644 --- a/theme/default/html/post/main.php +++ b/theme/default/html/post/main.php @@ -17,6 +17,14 @@ $time = " + +