mirror of
https://github.com/linuxserver/odin.git
synced 2026-01-09 06:42:26 +08:00
45 lines
1.3 KiB
Handlebars
45 lines
1.3 KiB
Handlebars
{{!< default}}
|
|
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
|
|
|
|
{{! The big featured header }}
|
|
<header class="main-header {{#if @blog.cover}}" style="background-image: url({{@blog.cover}}){{else}}no-cover{{/if}}">
|
|
|
|
|
|
<div class="vertical">
|
|
<div class="main-header-content inner">
|
|
|
|
{{#if @blog.logo}}
|
|
<div class="blog-logo">
|
|
<img src="{{@blog.logo}}" alt="{{@blog.title}}" />
|
|
</div>
|
|
{{/if}}
|
|
|
|
<h1 class="page-title">{{@blog.title}}</h1>
|
|
<h2 class="page-description">{{@blog.description}}</h2>
|
|
{{navigation}}
|
|
{{> "social_link"}}
|
|
|
|
{{! Searching }}
|
|
<div class="search">
|
|
<form>
|
|
<div class="search-fields">
|
|
<input placeholder="Search..." id="search-field" />
|
|
<i class="fa fa-times-circle" id="clear-search"></i>
|
|
</div>
|
|
</form>
|
|
<section id="results"></section>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</header>
|
|
|
|
{{! The main content area on the homepage }}
|
|
<main id="content" class="content" role="main">
|
|
|
|
{{! The tag below includes the post loop - partials/loop.hbs }}
|
|
{{> "loop"}}
|
|
|
|
</main>
|