diff options
author | glenda <glenda@9front.local> | 2020-11-15 15:13:27 +0000 |
---|---|---|
committer | glenda <glenda@9front.local> | 2020-11-15 15:13:27 +0000 |
commit | 39318169e0b50551db511851829f9337c5fa6313 (patch) | |
tree | 65a0ef5c1da9677532fa8105293d017919473057 /lib/default_master.tpl |
Import site to git
Diffstat (limited to 'lib/default_master.tpl')
-rw-r--r-- | lib/default_master.tpl | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/default_master.tpl b/lib/default_master.tpl new file mode 100644 index 0000000..6742c49 --- /dev/null +++ b/lib/default_master.tpl @@ -0,0 +1,26 @@ +<header> + <nav> +% cat `{ get_lib_file top_bar.inc } + </nav> + <h1><a href="/">%($"siteTitle%) <span id="headerSubTitle">%($"siteSubTitle%)</span></a></h1> +</header> + +% if(! ~ $#handlers_bar_left 0) { + <nav id="side-bar"> +% for(h in $handlers_bar_left) { + <div> +% run_handler $$h + </div> +% } + </nav> +% } + +<article> +% run_handlers $handlers_body_head +% run_handler $handler_body_main +% run_handlers $handlers_body_foot +</article> + +<footer> +% cat `{ get_lib_file footer.inc } +</footer> |