ghost-theme-sd.ai/partials/components/header.hbs

23 lines
666 B
Handlebars
Raw Normal View History

2023-07-10 08:09:26 +01:00
{{#match headerStyle "!=" "Off"}}
2023-07-10 04:14:43 +01:00
{{#match headerStyle "Highlight"}}
2023-09-15 09:43:18 +01:00
{{#match posts.length ">=" 7}}
{{> "components/header-content"}}
{{/match}}
{{else match headerStyle "Magazine"}}
{{#match posts.length ">=" 7}}
{{> "components/header-content"}}
{{/match}}
{{else}}
2023-08-14 02:10:22 +01:00
{{#match headerStyle "Landing"}}
{{#if @site.members_enabled}}
{{#unless @member}}
{{> "components/header-content"}}
{{/unless}}
{{/if}}
{{else}}
{{> "components/header-content"}}
{{/match}}
{{/match}}
2023-07-10 04:14:43 +01:00
2023-07-10 08:09:26 +01:00
{{/match}}