added dynamicRender flag to config for templates

This commit is contained in:
Are0h 2022-02-05 23:50:48 +00:00
parent 5dbaebcdf6
commit 5026fc168e
2 changed files with 5 additions and 0 deletions

View file

@ -3,6 +3,7 @@
"welcome_message": "Hey there. So this is a long ass title to see how it breaks",
"keywords": "creative technoglogist, graphic design, web development, designer developer, social thought, political discussion, music producer, creative culture, black creative, black geek",
"description": "The home site of Creative Technologist, music maker, and social philoshoper, Ro. Ha, I know. Me too.",
"dynamicRender": "true",
"base_path": "/src/front/",
"default_bg": "/assets/images/global/default-bg.jpg",
"default_avi": "/assets/images/global/default-avi.png",

View file

@ -53,6 +53,7 @@ class ThemeEngine
"debug" => true, //for theme kit
"theme" => $this->themeFolder, //for theme kit
"title" => "This is Fipamo",
"dynamicRender" => $this->data["dynamicRender"],
"background" =>
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
"recent" => $recent,
@ -70,6 +71,7 @@ class ThemeEngine
"debug" => true, //for theme kit
"theme" => $this->themeFolder, //for theme kit
"title" => "Page Title",
"dynamicRender" => $this->data["dynamicRender"],
"background" =>
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
"content" => $content,
@ -85,6 +87,7 @@ class ThemeEngine
"debug" => true, //for theme kit
"theme" => $this->themeFolder, //for theme kit
"title" => "Pages Tagged as Tag",
"dynamicRender" => $this->data["dynamicRender"],
"background" =>
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
"tag_list" => $tags,
@ -99,6 +102,7 @@ class ThemeEngine
"debug" => true, //for theme kit
"theme" => $this->themeFolder, //for theme kit
"title" => "Archive",
"dynamicRender" => $this->data["dynamicRender"],
"background" =>
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
"archives" => $archive,