1
0
Fork 0
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

32 Zeilen
892 B
Handlebars

{{!< default}}
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
{{> "header" }}
<header class="main-header tag-head {{#if tag.feature_image}}" style="background-image: url({{tag.feature_image}}){{else}}no-cover{{/if}}">
</header>
{{!-- The main content area on the homepage --}}
<main class="content" role="main">
{{#tag}}
<div class="main-header-content inner">
<h1 class="page-title">
{{name}}
{{#if description}}
<span class="description">{{description}}</span>
{{/if}}
</h1>
<hr/>
</div>
{{/tag}}
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
{{#if pagination.total}}
{{> "loop"}}
{{else}}
<div class="inner"><p>There are no items in this collection.</p></div>
{{/if}}
</main>