2019-01-04 18:14:53 +00:00
|
|
|
```
|
|
|
|
metadata.layout = "default.html.ejs"
|
|
|
|
```
|
|
|
|
|
|
|
|
<div class="main">
|
|
|
|
<% for (const series of allSeries) { %>
|
|
|
|
<article>
|
|
|
|
<h2 class="article-title">
|
2019-01-05 02:44:55 +00:00
|
|
|
<%- fancyLink(series.index.metadata.title, series.index.metadata.permalink) %>
|
2019-01-04 18:14:53 +00:00
|
|
|
</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>
|