diff --git a/templates/themes/categories/frames.html b/templates/themes/categories/frames.html index 400d3a3f..babb5da6 100644 --- a/templates/themes/categories/frames.html +++ b/templates/themes/categories/frames.html @@ -122,7 +122,10 @@ } {{ settings.title }} - + + {{ metaextra }} + + {% include 'themes/categories/' ~ settings.file_sidebar %} diff --git a/templates/themes/categories/theme.php b/templates/themes/categories/theme.php index a732a0e2..58c7d626 100644 --- a/templates/themes/categories/theme.php +++ b/templates/themes/categories/theme.php @@ -34,9 +34,10 @@ // Build homepage public static function homepage($settings) { global $config; - $description = 'Leftypol is a fun and enjoyable space where users can post anonymously.
' . - 'We engage in both serious political discourse and less serious informal discussions ' . - 'on various topics related to leftist thought.'; + $description = "Leftypol is an imageboard where users can post anonymously.
We engage in both serious political discourse and informal discussion on various topics related to leftist thought.

They are... an interesting group of people - Senpai Wolff "; + $metadescription = "Leftypol is an imageboard where users can post anonymously about both serious political discourse and informal discussion on various topics related to leftist thought."; + $metaextra = ''. +''; $query = query("SELECT * FROM ``news`` ORDER BY `time` DESC") or error(db_error()); $news = $query->fetchAll(PDO::FETCH_ASSOC); $stats = Categories::getPostStatistics($settings); @@ -46,6 +47,8 @@ 'config' => $config, 'settings' => $settings, 'description' => $description, + 'metadescription' => $metadescription, + 'metaextra' => $metaextra, 'categories' => Categories::getCategories($config), 'news' => $news, 'stats' => $stats,