1
0
Bifurcation 0
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

32 lignes
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>