shadowfacts.net/site/tutorials.html.ejs

18 lines
539 B
Plaintext
Raw Normal View History

2019-01-04 18:14:53 +00:00
```
metadata.layout = "default.html.ejs"
```
<div class="main">
<% for (const series of allSeries) { %>
<article>
2019-06-29 19:21:04 +00:00
<h2 class="article-title"><a href="<%= series.index.metadata.permalink %>"><%= series.index.metadata.title %></a></h2>
2019-01-04 18:14:53 +00:00
<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>