main
Raw Download raw file
 1<!DOCTYPE html>
 2<html lang="en">
 3<head>
 4<meta charset="utf-8">
 5<meta name="viewport" content="width=device-width, initial-scale=1">
 6<title>forge:{{.Category}}</title>
 7<style>
 8body {
 9  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
10  color: rgba(255, 255, 245, .86);
11  background: #1b1b1f;
12  margin: 0;
13  padding: 2rem 1rem;
14}
15.container {
16  max-width: 800px;
17  margin: 0 auto;
18}
19h1 {
20  border-bottom: 1px solid #3c3f44;
21  padding-bottom: 0.5rem;
22}
23ul {
24  list-style: none;
25  padding: 0;
26}
27li {
28  padding: 0.3rem 0;
29}
30a {
31  color: #a8b1ff;
32  text-decoration: none;
33}
34a:hover {
35  text-decoration: underline;
36}
37.back {
38  margin-bottom: 1rem;
39}
40.back a {
41  color: rgba(235, 235, 245, .6);
42}
43</style>
44</head>
45<body>
46<div class="container">
47<div class="back"><a href="../">&larr; back</a></div>
48<h1>forge:{{.Category}}</h1>
49<ul>
50{{range .Repos}}<li><a href="{{.Name}}/">{{.Name}}</a></li>
51{{end}}</ul>
52</div>
53</body>
54</html>