diff options
author | FChannel <> | 2021-07-07 10:46:04 -0700 |
---|---|---|
committer | FChannel <> | 2021-07-07 10:46:04 -0700 |
commit | c78d2f1d22e49868870166ead4b115731e054b4f (patch) | |
tree | 0a3e696fa278097b07331245279c3a73eb135aae /static/index.html | |
parent | e859b3bc4e7e9c5a77ec2283088a042eb7b1b6e1 (diff) |
added media proxy for remote links
Diffstat (limited to 'static/index.html')
-rw-r--r-- | static/index.html | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/static/index.html b/static/index.html index 667efd4..b706e6b 100644 --- a/static/index.html +++ b/static/index.html @@ -64,17 +64,15 @@ {{ end }} <div class="popup-box" style="margin-top:50px;"> - <table style="text-align: left; margin: 25px;"> - <th> - <tr><h4>Current known instances</h4></tr> - </th> - - {{ range .InstanceIndex }} - <tr> - <td><a href="{{ .Id }}">{{ .Id }}</a></td> - </tr> - {{ end }} - </table> + <h4 style="margin-bottom:5px;">Current known instances</h4> + <span>(always use a proxy)</span> + <table style="text-align: left; margin: 25px;"> + {{ range .InstanceIndex }} + <tr> + <td><a href="{{ .Id }}">{{ .Id }}</a></td> + </tr> + {{ end }} + </table> </div> </div> {{ end }} |