2024-08-13 19:12:27 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>MatterLinux | {{.Name}} {{.Version}}</title>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=1200">
|
|
|
|
<link href="/style.css" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{template "parts/bar" .}}
|
|
|
|
<main class="package-main">
|
|
|
|
<div class="detail">
|
|
|
|
<h3>Package details</h3>
|
|
|
|
<div class="links">
|
|
|
|
<a href="{{.URL}}">View source</a>
|
|
|
|
<a href="/p/{{.Name}}/{{.Version}}?download=1">Download archive</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<table class="package">
|
|
|
|
<tr class="package-name">
|
|
|
|
<th>Name</th>
|
|
|
|
<th>{{.Name}}</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Version</th>
|
|
|
|
<th>{{.Version}}</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>Size</th>
|
|
|
|
<th>{{.Size}}</th>
|
|
|
|
</tr>
|
2024-08-21 22:10:47 +00:00
|
|
|
<tr>
|
|
|
|
<th>Pool</th>
|
|
|
|
<th>{{.Pool.Display}}</th>
|
|
|
|
</tr>
|
2024-08-13 19:12:27 +00:00
|
|
|
<tr>
|
|
|
|
<th>Description</th>
|
|
|
|
<th>{{.Desc}}</th>
|
|
|
|
</tr>
|
|
|
|
{{if .Depends}}
|
|
|
|
<tr>
|
|
|
|
<th>Dependencies</th>
|
|
|
|
<th>
|
|
|
|
{{range .Depends}}
|
|
|
|
<a href="/p/{{.}}/ANY">{{.}}</a>
|
|
|
|
{{end}}
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
{{$files := .Files}}
|
|
|
|
{{if $files}}
|
|
|
|
<tr>
|
|
|
|
<th>Files</th>
|
2024-08-25 21:41:09 +00:00
|
|
|
<th class="files">
|
2024-08-13 19:12:27 +00:00
|
|
|
{{range $files}}
|
|
|
|
<p>/{{.}}</p>
|
|
|
|
{{end}}
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
</table>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|