22 lines
631 B
Plaintext
22 lines
631 B
Plaintext
---
|
|
title: Explore
|
|
eleventyExcludeFromCollections: true
|
|
eleventyComputed:
|
|
desc: Explore {{ sitemeta.siteName }}.
|
|
---
|
|
<p>You can start with the following pages to explore my website.</p>
|
|
|
|
{{ set explorePages = collections["explore links"] |> eleventyNavigation }}
|
|
<ul>
|
|
{{ for entry of explorePages }}
|
|
<li>
|
|
<p class="item-list__title">
|
|
<a href="{{ entry.url }}">{{ entry.title }}</a>
|
|
</p>
|
|
<p>{{ entry.data.desc }}</p>
|
|
</li>
|
|
{{ /for }}
|
|
</ul>
|
|
|
|
<p>You can also navigate this website through the <a href="/sitemap/">site map</a>, or <a href="/search/">search this website</a>.</p>
|