2023-07-10 08:09:26 +01:00
|
|
|
{{#match headerStyle "!=" "Off"}}
|
|
|
|
<section class="gh-header is-{{#match headerStyle "Magazine"}}magazine{{else match headerStyle "Highlight"}}highlight{{else}}classic{{/match}}{{#if @custom.use_publication_cover_as_background}} has-image{{/if}} gh-outer">
|
|
|
|
|
|
|
|
{{!-- Background image --}}
|
|
|
|
{{#if @custom.use_publication_cover_as_background}}
|
|
|
|
{{#match headerStyle "!=" "Magazine"}}
|
|
|
|
{{#match headerStyle "!=" "Highlight"}}
|
|
|
|
{{#if @site.cover_image}}
|
|
|
|
<img class="gh-header-image" src="{{@site.cover_image}}" alt="{{@site.title}}">
|
|
|
|
{{/if}}
|
|
|
|
{{/match}}
|
|
|
|
{{/match}}
|
|
|
|
{{/if}}
|
2023-07-10 04:14:43 +01:00
|
|
|
|
2023-07-10 08:09:26 +01:00
|
|
|
<div class="gh-header-inner gh-inner">
|
2023-07-10 04:14:43 +01:00
|
|
|
|
2023-07-10 08:09:26 +01:00
|
|
|
{{!-- Magazine layout --}}
|
|
|
|
{{#match headerStyle "Magazine"}}
|
|
|
|
{{#foreach posts limit="7"}}
|
|
|
|
{{#match @number 2}}
|
|
|
|
<div class="gh-header-left">
|
|
|
|
{{/match}}
|
|
|
|
{{#match @number 5}}
|
|
|
|
<div class="gh-header-right">
|
|
|
|
{{/match}}
|
|
|
|
{{> "loop"}}
|
|
|
|
{{#match @number 4}}
|
|
|
|
</div>
|
|
|
|
{{/match}}
|
|
|
|
{{#match @number 7}}
|
|
|
|
</div>
|
|
|
|
{{/match}}
|
|
|
|
{{/foreach}}
|
|
|
|
{{/match}}
|
2023-07-10 04:14:43 +01:00
|
|
|
|
2023-07-10 08:09:26 +01:00
|
|
|
{{!-- Highlight layout --}}
|
|
|
|
{{#match headerStyle "Highlight"}}
|
|
|
|
{{#foreach posts limit="4"}}
|
|
|
|
{{> "loop"}}
|
|
|
|
{{/foreach}}
|
|
|
|
{{/match}}
|
2023-07-10 04:14:43 +01:00
|
|
|
|
2023-07-10 08:09:26 +01:00
|
|
|
{{!-- Landing layout --}}
|
|
|
|
{{#match headerStyle "Landing"}}
|
2023-07-10 09:13:01 +01:00
|
|
|
<h1 data-title>Founded by Australian journalist Claire Lehmann, Quillette publishes high quality long reads on diverse topics, daily.</h1>
|
2023-07-10 08:09:26 +01:00
|
|
|
<form>
|
|
|
|
<input type="email" placeholder="jamie@example.com">
|
|
|
|
<button class="gh-button" type="submit">Subscribe</button>
|
|
|
|
</form>
|
|
|
|
{{/match}}
|
2023-07-10 04:14:43 +01:00
|
|
|
|
2023-07-10 08:09:26 +01:00
|
|
|
{{!-- Search layout --}}
|
|
|
|
{{#match headerStyle "Search"}}
|
2023-07-10 09:13:01 +01:00
|
|
|
<h1 data-title>Founded by Australian journalist Claire Lehmann, Quillette publishes high quality long reads on diverse topics, daily.</h1>
|
2023-07-10 08:09:26 +01:00
|
|
|
<button data-ghost-search>{{> "icons/search"}}Search</button>
|
|
|
|
{{/match}}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
{{/match}}
|