1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| <html lang='en'>
<head>
<meta charset='UTF-8'>
<meta name='viewport' content='width=device-width, initial-scale=1.0'>
<meta name='author' content='Maciej Spychala' />
<title>git.mcksp.com</title>
<link type='text/css' rel='stylesheet' href='/style.css'>
<style>.line-num{text-decoration:none;color:#555;}.icon{width:16px;height:16px;image-rendering: pixelated;padding-right:4px;}.listing > div{margin-bottom:4px;}a.link{text-decoration:none;}.repo-name{padding-right:32px;}</style>
<link rel="stylesheet" type="text/css" href="/style.css">
</head>
<body>
<header>
<a id='title' href='/'>git - alex wennerberg</a>
</header>
<main>
<table style='padding-bottom:16px'><tbody><tr><td><img {{iconSrc "image.png" .Icons}} style='width:32px;height:32px;image-rendering: pixelated'></td><td><div><b>{{.RepoName}}</b> - {{.Description}}</div><div>git clone {{.Domain}}/{{.RepoName}}.git</div></td></tr></tbody></table>
<div class='listing'>{{range .Directories}}<div><img {{iconSrc "dir.png" $.Icons}} class='icon'><a class='link' href='./{{$.PathPrefix}}{{.Path}}.html'>{{.Name}}</a></div>{{end}}{{range .Files}}<div><img {{iconSrc "text.png" $.Icons}} class='icon'><a class='link' href='./{{$.PathPrefix}}{{.Path}}.html'>{{.Name}}</a></div>{{end}}{{if .HasReadme}}<hr><div style='text-align:center;'></div>
<div style='overflow-x:scroll;'><table><tbody><tr><td><pre style='padding-left:8px'>{{htmlEncode .ReadmeContent}}</pre></td></tr></tbody></table></div>{{end}}</div><div style='margin-top:16px;color:#666;font-size:0.9em;'>Last updated: {{.LastModified}}</div>
</main>
<footer>
made with <a href='https://git.mcksp.com/gituwa'>gituwa</a>
</footer>
</body>
</html>
|