Files
tut-spring-boot-kotlin/src/main/resources/templates/blog.mustache
Sebastien Deleuze fc5a6393da Initial commit
2018-05-09 17:10:39 +02:00

29 lines
764 B
Plaintext

{{> header}}
<div class="articles">
{{#banner.title}}
<section>
<header class="banner">
<h2 class="banner-title">{{banner.title}}</h2>
</header>
<div class="banner-content">
{{banner.content}}
</div>
</section>
{{/banner.title}}
{{#articles}}
<section>
<header class="article-header">
<h2 class="article-title"><a href="/article/{{id}}">{{title}}</a></h2>
<div class="article-meta">By <strong>{{author.firstname}}</strong>, on <strong>{{addedAt}}</strong></div>
</header>
<div class="article-headline">
{{headline}}
</div>
</section>
{{/articles}}
</div>
{{> footer}}