-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1.05 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>lmorchard sketches-v02</title>
</head>
<body class="site-index">
<header>
<h1>lmorchard sketches vol 02</h1>
</header>
<ul class="sketches">
<% for (const {filename, metadata: { href, title, image, description, date }} of sketches) { %>
<li>
<a class="image" href="<%= href %>/index.html"><img src="<%= image %>" /></a>
<section class="title-description">
<a class="title" href="<%= href %>/index.html"><%= title %></a>
<p class="description"><%= description %></p>
</section>
<time datetime="<%= date.toISOString() %>"><%= date.toLocaleDateString() %></time>
<% /* <a class="source" href="https://github.com/lmorchard/sketches-v01/tree/main/src/sketches/2021/vector-avatars/">Source</a> */ %>
</li>
<% } %>
</ul>
<script type="module" src="./index.js"></script>
</body>
</html>