Basic template for a page header.

This commit is contained in:
Tom Alexander 2023-12-17 14:39:20 -05:00
parent c98489cacb
commit c84cfdc02b
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 5 additions and 1 deletions

View File

@ -7,7 +7,7 @@
{?global_settings.page_title}<title>{global_settings.page_title}</title>{/global_settings.page_title}
</head>
<body>
{! TODO: Header bar with links? !}
{#.page_header}{>page_header/}{/.page_header}
<div class="main_content">
{@select key=.type}
{@eq value="blog_post_page"}{>blog_post_page/}{/eq}

View File

@ -0,0 +1,4 @@
<div class="page_header">
<a href="{.home_link}">{.website_title}</a>
{! TODO: Additional links? !}
</div>