examples and tutorials
This commit is contained in:
parent
06914e6c02
commit
96bf869340
22 changed files with 159 additions and 122 deletions
23
src/tutorials/tutorials.njk
Normal file
23
src/tutorials/tutorials.njk
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
title: Alle Tutorials
|
||||
layout: overview.njk
|
||||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
|
||||
{%- for post in collections.tutorial -%}
|
||||
<article>
|
||||
<header>
|
||||
<h1>
|
||||
<a href="{{post.url}}">{{post.data.title}}</a>
|
||||
</h1>
|
||||
|
||||
<time>{{post.date | formatDate }}</time>
|
||||
</header>
|
||||
|
||||
<p>{{post.templateContent | createExcerpt}}</p>
|
||||
|
||||
<a class="button" href="{{post.url}}">
|
||||
Weiterlesen
|
||||
</a>
|
||||
</article>
|
||||
{%- endfor -%}
|
||||
Loading…
Add table
Add a link
Reference in a new issue