shadowfacts.net/site/tutorials.html.ejs

18 lines
539 B
Plaintext

```
metadata.layout = "default.html.ejs"
```
<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>