summaryrefslogtreecommitdiffstats
path: root/files/reg-server/repositories.html
blob: 572fbc6efe0f5dc4041ed27e89538515fcf4d92f (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{{define "repositories"}}
<!DOCTYPE html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
    <meta charset="utf-8">
    <base href="/" >
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <title>{{ .RegistryDomain }}</title>
    <link rel="icon" type="image/ico" href="/favicon.ico">
    <link rel="stylesheet" href="/css/styles.css" />
</head>
<body>
    <h1>{{ .RegistryDomain }}</h1>
    <form>
        <input name="filter" type="search"><a class="clear">clear</a>
    </form>

    <div class="wrapper">
        <table>
            <tr>
                <th>Repository Name</th>
                <th>Pull Command</th>
            </tr>
            {{ range $key, $value := .Repositories }}
            <tr>
                <td valign="top">
                    <a href="/repo/{{ $value.Name | urlquery }}/tags">
                    {{ $value.Name }}
                    </a>
                </td>

                <td align="right" nowrap>
                    <a href="/repo/{{ $value.Name | urlquery }}/tags">
                    <code>docker pull {{ $value.URI }}</code>
                    </a>
                </td>
            </tr>
            {{ end }}
        </table>
    </div>

    <div class="footer">
        <p>Last Updated: {{ .LastUpdated }}</p>
        <p>
        Fedora Container Layered Images brought to you by the
        <a href="https://fedoraproject.org/wiki/Atomic_WG">Fedora Atomic Working
        Group</a>
        </p>
        <p>
        <a href="https://github.com/jessfraz/reg/tree/master/server">reg-server
            was originally written and is maintained upstream by</a>
        <a href="https://twitter.com/jessfraz">@jessfraz</a>
        </p>
    </div><!--/.footer-->
    <script src="/js/scripts.js"></script>
    <script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
    (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-29404280-12', 'jessfraz.com');
ga('send', 'pageview');
    </script>
</body>
</html>
{{end}}