website/templates/configs.html

54 lines
1.3 KiB
HTML
Raw Normal View History

2024-05-05 18:22:45 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<title>MatterLinux | Configs</title>
2024-08-23 11:11:48 +00:00
{{template "parts/head" .}}
2024-05-05 18:22:45 +00:00
<link href="/configs.css" rel="stylesheet">
<link href="/md.css" rel="stylesheet">
</head>
<body>
{{template "parts/bar" .}}
<main>
<div class="md">
<h1>Config Hub</h1>
{{.content.HTML}}
</div>
<div class="list">
{{range .list}}
<div class="config">
<img src="{{.Image}}">
<div class="details">
<h1>{{.Name}}</h1>
<table>
<tr>
<th>URL</th>
<td><a href="{{.Redirect}}">{{.Name}}</a></td>
</tr>
{{ if .Desc }}
<tr>
<th>Description</th>
<td>{{.Desc}}</td>
</tr>
{{ end }}
<tr>
<th>Author</th>
<td>{{.Author}}</td>
</tr>
<tr>
<th>Keywords</th>
<td>{{.Keywords}}</td>
</tr>
</table>
<p>
Run the following to install this
confiugraiton:
</p>
<pre>$ confer pull {{.Name}}</pre>
2024-05-05 18:22:45 +00:00
</div>
</div>
{{end}}
</div>
</main>
</body>
</html>