summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClark Laughlin <clark.laughlin@linaro.org>2015-10-27 14:15:17 -0400
committerClark Laughlin <clark.laughlin@linaro.org>2015-10-27 14:15:17 -0400
commit752f1524c67dfd2d3ddfb9c57a16ba7a906c0e20 (patch)
tree5d76bdaf1a78f1ec4119eea058cb1b0ee4f0b718
parentb5795975dbb05a4cc039ed03fdb945d229e2e483 (diff)
index.html: re-order page -- list images first
-rw-r--r--registry-browser/static/index.html35
1 files changed, 17 insertions, 18 deletions
diff --git a/registry-browser/static/index.html b/registry-browser/static/index.html
index cbf4ba7..dc09623 100644
--- a/registry-browser/static/index.html
+++ b/registry-browser/static/index.html
@@ -128,6 +128,23 @@ $(function() {
<h1><img style="vertical-align: middle; width: 150px" src="https://www.linaro.org/app/images/linaro-logo-web.png"/>
Aarch64 Docker Registry</h1>
+<h2>Available Images</h2>
+
+<div id="repo-list">
+<input class="search" placeholder="Search"/>
+<ul class="list"></ul>
+</div>
+
+<div style="display:none;">
+ <!-- A template element is needed when list is empty, TODO: needs a better solution -->
+ <li id="repo-item">
+ <h4 class="name"></h4>
+ <span class="tags-header">Tags:</span><span class="formatted-tags"></span>
+ </li>
+</div>
+
+<br/><br/>
+
<h2>Overview and Instructions</h2>
<p>This is a privately-run docker registry containing repositories of aarch64 images for use with Docker on aarch64 platforms.
@@ -155,23 +172,5 @@ To resolve this issue:
</ol>
</p>
-<br/>
-<br/>
-
-<h2>Available Images</h2>
-
-<div id="repo-list">
-<input class="search" placeholder="Search"/>
-<ul class="list"></ul>
-</div>
-
-<div style="display:none;">
- <!-- A template element is needed when list is empty, TODO: needs a better solution -->
- <li id="repo-item">
- <h4 class="name"></h4>
- <span class="tags-header">Tags:</span><span class="formatted-tags"></span>
- </li>
-</div>
-
</body>
</html>