scaffold unprompted site: eleventy, templates, gitea CI
Some checks failed
Deploy to S3 / deploy (push) Failing after 1m26s
Some checks failed
Deploy to S3 / deploy (push) Failing after 1m26s
This commit is contained in:
18
index.njk
Normal file
18
index.njk
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
layout: base.njk
|
||||
---
|
||||
|
||||
{%- set latest = collections.columns | first -%}
|
||||
{%- if latest %}
|
||||
<article class="column-entry">
|
||||
<header class="column-header">
|
||||
<h1><a href="{{ latest.url }}">{{ latest.data.title }}</a></h1>
|
||||
<time datetime="{{ latest.date | isoDate }}">{{ latest.date | readableDate }}</time>
|
||||
</header>
|
||||
<div class="column-body">
|
||||
{{ latest.content | safe }}
|
||||
</div>
|
||||
</article>
|
||||
{%- else %}
|
||||
<p>Nothing here yet.</p>
|
||||
{%- endif %}
|
||||
Reference in New Issue
Block a user