-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (57 loc) · 2.06 KB
/
Copy pathindex.html
File metadata and controls
57 lines (57 loc) · 2.06 KB
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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="nobloat focuses on pragmatic software minimalism" />
<meta name="keywords" content="cuttindg down on software bloat, minimalism, software development, frameworkless, no bloat, local-first software, minimal dependencies" />
<title>{{.Title}}</title>
<link rel="stylesheet" href="style.css" />
<script defer data-domain="nobloat.org" src="https://plausible.io/js/script.outbound-links.tagged-events.js"></script>
</head>
<body>
<h1><a href="./index.html">{{.Title}}</a></h1>
<p style="font-family: monospace; text-align: center">{{.Slogan}}</p>
<section>
<h2 id="articles">Articles</h2>
<ul>
{{range .Posts}}
<li>
<small>{{ .Date.Format "Jan 2 2006" }}</small>
<a href="articles/{{.Slug}}.html">{{.Title}}</a>
</li>
{{end}}
</ul>
</section>
<section>
<h2 id="projects">Projects</h2>
<ul>
{{range $name, $desc := .Projects}}
<li>{{ md2html $name | safeHTML }} {{ md2html $desc | safeHTML }}</li>
{{end}}
</ul>
</section>
<section>
<h2 id="tools">Tools</h2>
<ul>
{{range $tool := .Tools}}
<li>
<a href="{{$tool.URL}}">{{$tool.Name}}</a>
{{$tool.Description}}
</li>
{{end}}
</ul>
</section>
<section>
<h2 id="links">Links</h2>
<ul>
{{range $name, $url := .Links}}
<li><a href="{{$url}}">{{$name}}</a></li>
{{end}}
</ul>
</section>
<footer>
<a href="./feed.xml">RSS Feed</a> |
<a href="https://github.com/nobloat">GitHub</a>
</footer>
</body>
</html>