-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html.p
34 lines (34 loc) · 1.21 KB
/
home.html.p
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
28
29
30
31
32
33
34
<!DOCTYPE html>
<html class="homebg">
<head>
<meta content="text/html" charset="utf-8">
<link rel="shortcut icon" href="http://atharva.social/favicon.ico" id="favicon">
<link rel="stylesheet" href="css/home.css">
<script defer src="js/viz.js" type="text/javascript"></script>
<title>Atharva’s Living Notebook</title>
</head>
<body>
<div class="container" id="splash">
<div class="main">
<div class="home-header">
◊(select-from-metas 'title 'index.html)
</div>
<div class="section">
◊for/splice[([section (in-list sections)])]{
<div class="section-header">◊|section|</div>
<ul>
◊for/splice[([article (in-list (children (string->symbol (string-append "section_" section))))])]{
<li><a href="◊|article|">◊(select-from-metas 'title article)</a></li>
}
</ul>
}
</div>
</div>
<div class="main-side">
<div id="sketch">
</div>
<span id="side-links"><a href="about.html">about</a> · <a href="">colophon</a> · <a href="https://github.com/tfidfwastaken/living-notebook">source</a></span>
</div>
</div>
</body>
</html>