-
Notifications
You must be signed in to change notification settings - Fork 0
/
startpage-template.html
61 lines (47 loc) · 1.59 KB
/
startpage-template.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="https://ginglis.me/site.css">
</head>
<body class="hack dark main container">
<header>
<nav itemscope itemtype="http://schema.org/SiteNavigationElement">
<a itemprop="url"
class=""
href="https://ginglis.me">
<span itemprop="name">Home
</span></a>
<a itemprop="url"
class=""
href="https://ginglis.me/whoami">
<span itemprop="name">whoami
</span></a>
</nav>
</header>
<div itemprop="articleBody">
<h1>start page</h1>
<h2>The Usual Suspects</h2>
<ul>
<li><a href="https://lobste.rs" target="_blank">lobste.rs</a></li>
<li><a href="https://news.ycombinator.com" target="_blank">HN</a></li>
</ul>
<!-- where the magic happens -->
<h2>Blogs and Other Feeds</h2>
<ul>
{{range .Posts}}
<li><a href={{.Url}} target="_blank">{{.Title}}</a> [{{.Source}}]</li>
{{end}}
</ul>
</div>
<footer>
<hr>
<p>
<a href="https://github.com/ginglis13/startpage">source</a>
Last updated (PDT): {{.LastUpdated}}
</p>
</footer>
<script data-goatcounter="https://ginglis.goatcounter.com/count"
async src="//gc.zgo.at/count.js"></script>
</body>
</html>