]> git.vanrenterghem.biz Git - www2.vanrenterghem.biz.git/blob - html/post.mustache
Verbeter opmaak posts index pagina.
[www2.vanrenterghem.biz.git] / html / post.mustache
1 <!DOCTYPE html>
2 <html>
3   <head>
4     {{>head}}
5     {{>post-head}}
6   </head>
7   <body>
8     {{>navbar}} 
9     <nav aria-label="breadcrumb">
10       <ol class="breadcrumb">
11         <li class="breadcrumb-item"><a href="/">Home</a></li>
12         <li class="breadcrumb-item"><a href="/posts/sitemap.html">Blog</a></li>
13         <li class="breadcrumb-item active" aria-current="page">{{title}}</li>
14       </ol>
15     </nav>
16     <article class="container content inlinepage card h-entry">
17       <section id="content" role="main" class="e-content card-body">
18         <!-- <h1>{{title}}</h1> -->
19         {{{contents}}}
20       </section>
21       <div class="info row bg-light">
22         <div class="col">
23           <ul class="tags d-flex align-items-baseline list-unstyled mb-0">
24             <p>Tags:</p>
25             {{#tags}}
26             <li class="px-1 g-0"><a href='/posts/tag-{{tag}}.html'>{{tag}}</a></li>
27             {{/tags}}
28           </ul>
29         </div>
30         <div class="w-100">
31         </div>
32         <div class="col">
33           <p>Posted on {{{date}}}</p>
34         </div>
35       </div>
36     </article>
37     {{>footer}}
38   </body>
39 </html>