added dynamicRender flag to config for templates
This commit is contained in:
parent
5dbaebcdf6
commit
5026fc168e
2 changed files with 5 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
||||||
"welcome_message": "Hey there. So this is a long ass title to see how it breaks",
|
"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",
|
"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.",
|
"description": "The home site of Creative Technologist, music maker, and social philoshoper, Ro. Ha, I know. Me too.",
|
||||||
|
"dynamicRender": "true",
|
||||||
"base_path": "/src/front/",
|
"base_path": "/src/front/",
|
||||||
"default_bg": "/assets/images/global/default-bg.jpg",
|
"default_bg": "/assets/images/global/default-bg.jpg",
|
||||||
"default_avi": "/assets/images/global/default-avi.png",
|
"default_avi": "/assets/images/global/default-avi.png",
|
||||||
|
|
|
@ -53,6 +53,7 @@ class ThemeEngine
|
||||||
"debug" => true, //for theme kit
|
"debug" => true, //for theme kit
|
||||||
"theme" => $this->themeFolder, //for theme kit
|
"theme" => $this->themeFolder, //for theme kit
|
||||||
"title" => "This is Fipamo",
|
"title" => "This is Fipamo",
|
||||||
|
"dynamicRender" => $this->data["dynamicRender"],
|
||||||
"background" =>
|
"background" =>
|
||||||
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
|
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
|
||||||
"recent" => $recent,
|
"recent" => $recent,
|
||||||
|
@ -70,6 +71,7 @@ class ThemeEngine
|
||||||
"debug" => true, //for theme kit
|
"debug" => true, //for theme kit
|
||||||
"theme" => $this->themeFolder, //for theme kit
|
"theme" => $this->themeFolder, //for theme kit
|
||||||
"title" => "Page Title",
|
"title" => "Page Title",
|
||||||
|
"dynamicRender" => $this->data["dynamicRender"],
|
||||||
"background" =>
|
"background" =>
|
||||||
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
|
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
|
||||||
"content" => $content,
|
"content" => $content,
|
||||||
|
@ -85,6 +87,7 @@ class ThemeEngine
|
||||||
"debug" => true, //for theme kit
|
"debug" => true, //for theme kit
|
||||||
"theme" => $this->themeFolder, //for theme kit
|
"theme" => $this->themeFolder, //for theme kit
|
||||||
"title" => "Pages Tagged as Tag",
|
"title" => "Pages Tagged as Tag",
|
||||||
|
"dynamicRender" => $this->data["dynamicRender"],
|
||||||
"background" =>
|
"background" =>
|
||||||
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
|
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
|
||||||
"tag_list" => $tags,
|
"tag_list" => $tags,
|
||||||
|
@ -99,6 +102,7 @@ class ThemeEngine
|
||||||
"debug" => true, //for theme kit
|
"debug" => true, //for theme kit
|
||||||
"theme" => $this->themeFolder, //for theme kit
|
"theme" => $this->themeFolder, //for theme kit
|
||||||
"title" => "Archive",
|
"title" => "Archive",
|
||||||
|
"dynamicRender" => $this->data["dynamicRender"],
|
||||||
"background" =>
|
"background" =>
|
||||||
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
|
$this->themeAssetPath . "/assets/images/global/default-bg.jpg",
|
||||||
"archives" => $archive,
|
"archives" => $archive,
|
||||||
|
|
Loading…
Reference in a new issue