shadowfacts.net/site/tutorials.html.ejs

24 lines
589 B
Plaintext

```
metadata.layout = "default.html.ejs"
metadata.title = "Tutorials"
```
<div class="main">
<% for (const series of allSeries) { %>
<article>
<h2 class="article-title">
<a href="<%= series.index.metadata.permalink %>">
<%= series.index.metadata.title %>
</a>
</h2>
<p class="article-meta">
last updated on
<span>
<% const formatted = formatDate(series.index.metadata.lastUpdated, "MMM Do, YYYY") %>
<time datetime="<%= series.index.metadata.lastUpdated.toISOString() %>"><%= formatted %></time>
</span>
</p>
</article>
<% } %>
</div>