19 lines
600 B
Plaintext
19 lines
600 B
Plaintext
---
|
||
layout: layouts/home.njk
|
||
tags: nav
|
||
navtitle: Home
|
||
---
|
||
|
||
<div class="warning">
|
||
<ol>
|
||
<li>Edit the <code>_data/metadata.json</code> with your blog’s information.</li>
|
||
<li>(Optional) Edit <code>.eleventy.js</code> with your configuration preferences.</li>
|
||
<li>Delete this message from <code>index.njk</code>.</li>
|
||
</ol>
|
||
<p><em>This is an <a href="https://www.11ty.io/">Eleventy project</a> created from the <a href="https://github.com/11ty/eleventy-base-blog"><code>eleventy-base-blog</code> repo</a>.</em></p>
|
||
</div>
|
||
|
||
{% set postslist = collections.posts %}
|
||
{% include "postslist.njk" %}
|
||
|