This repository was archived by the owner on Dec 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.mustache
More file actions
45 lines (45 loc) · 1.38 KB
/
template.mustache
File metadata and controls
45 lines (45 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Docker Explore</title>
<link rel="stylesheet" href="https://unpkg.com/bulma@0.7.1/css/bulma.css">
</head>
<body>
<header class="hero">
<div class="hero-body">
<div class="container">
<h1 class="title">Docker Explore</h1>
<p class="subtitle">List official docker images in a page.</p>
</div>
</div>
</header>
<main class="section">
<div class="container">
<div class="columns is-multiline">
{{#repositories}}
<div class="column is-half-tablet is-one-third-desktop is-3-widescreen is-one-fifth-fullhd">
<article class="card">
<header class="card-header">
<h2 class="card-header-title">{{name}}</h2>
</header>
<div class="card-content">
<p>{{description}}</p>
</div>
<footer class="card-footer">
<a href="https://hub.docker.com/_/{{name}}" class="card-footer-item">Docker Hub</a>
</footer>
</article>
</div>
{{/repositories}}
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<p class="has-text-centered">Built with ❤ by <a href="https://www.sya.org.cn/">Sya</a></p>
</div>
</footer>
</body>
</html>