2013-10-14 21:50:07 +00:00
{% extends "base.html" %}
2013-10-10 23:06:04 +00:00
2013-10-14 21:50:07 +00:00
{% block title %}
2015-11-20 02:36:14 +00:00
< title ng-bind = "title + ' · Quay'" > Quay< / title >
2013-10-14 21:50:07 +00:00
{% endblock %}
2013-09-23 16:37:40 +00:00
2013-10-14 21:50:07 +00:00
{% block added_meta %}
< base href = "/" >
2013-09-24 22:21:14 +00:00
2017-07-13 14:12:46 +00:00
< meta id = "descriptionTag" name = "description" content = "Quay is the best place to build, store, and distribute your containers. Public repositories are always free." / >
2013-10-14 21:50:07 +00:00
< meta name = "google-site-verification" content = "GalDznToijTsHYmLjJvE4QaB9uk_IP16aaGDz5D75T4" / >
2016-06-14 17:13:21 +00:00
< meta name = "google-site-verification" content = "oio7ioMILUo9QDflvyFz8pWig1ac2eLq5IGyQuzFMh8" / >
2016-02-16 20:31:23 +00:00
{% if aci_conversion %}
2015-01-13 23:00:01 +00:00
< meta name = "ac-discovery" content = "{{ hostname }} {{ preferred_scheme }}://{{ hostname }}/c1/aci/{name}/{version}/{ext}/{os}/{arch}/" >
2015-02-05 22:55:54 +00:00
< meta name = "ac-discovery-pubkeys" content = "{{ hostname }} {{ preferred_scheme }}://{{ hostname }}/aci-signing-key" >
2016-02-16 20:31:23 +00:00
{% endif %}
2015-01-13 22:46:11 +00:00
2013-10-14 21:50:07 +00:00
{% endblock %}
2013-09-26 21:59:20 +00:00
2013-10-14 21:50:07 +00:00
{% block body_content %}
2013-11-20 21:17:47 +00:00
<!-- Note: Must be in the <body> tag -->
2014-04-15 20:35:15 +00:00
< script src = "static/standalonelib/jquery.overscroll.min.js" > < / script >
2014-11-24 21:07:38 +00:00
2017-04-03 18:29:26 +00:00
< div ng-view >
2017-04-21 18:08:18 +00:00
< div class = "co-m-loader co-an-fade-in-out loading-js-fade-out" >
< div class = "co-m-loader-dot__one" > < / div >
< div class = "co-m-loader-dot__two" > < / div >
< div class = "co-m-loader-dot__three" > < / div >
< / div >
< div class = "co-alert co-alert-danger loading-js-fade-in" >
2017-04-03 18:29:26 +00:00
The Quay application could not be loaded, which typically indicates an external library could not be loaded (usually due to an ad blocker). Please check the JavaScript console for errors.
< / div >
< / div >
2013-11-12 00:26:56 +00:00
<!-- Modal message dialog -->
2017-04-03 18:29:26 +00:00
< div class = "modal fade" id = "sessionexpiredModal" data-backdrop = "static" style = "display: none" >
2013-11-12 00:26:56 +00:00
< div class = "modal-dialog" >
< div class = "modal-content" >
< div class = "modal-header" >
< h4 class = "modal-title" > Session Expired< / h4 >
< / div >
< div class = "modal-body" >
2014-02-27 19:45:39 +00:00
Your user session has expired. Please < a href = "javascript:void(0)" data-dismiss = "modal" onclick = "location = '/signin'" > sign in< / a > to continue.
2013-11-12 00:26:56 +00:00
< / div >
< div class = "modal-footer" >
2014-02-27 19:45:39 +00:00
< a href = "javascript:void(0)" class = "btn btn-primary" data-dismiss = "modal" onclick = "location = '/signin'" > Sign In< / a >
2013-11-12 00:26:56 +00:00
< / div >
< / div > <!-- /.modal - content -->
< / div > <!-- /.modal - dialog -->
< / div > <!-- /.modal -->
2014-05-28 19:22:36 +00:00
<!-- Modal message dialog -->
2017-04-03 18:29:26 +00:00
< div class = "modal fade" id = "cannotContactService" data-backdrop = "static" style = "display: none;" >
2014-05-28 19:22:36 +00:00
< div class = "modal-dialog" >
< div class = "modal-content" >
< div class = "modal-header" >
2014-08-25 19:30:29 +00:00
< h4 class = "modal-title" > Cannot Contact External Service< / h4 >
2014-05-28 19:22:36 +00:00
< / div >
< div class = "modal-body" >
2014-08-25 19:30:29 +00:00
A connection to an external service has failed. Please reload the page to try again.
2014-05-28 19:22:36 +00:00
< / div >
< / div > <!-- /.modal - content -->
< / div > <!-- /.modal - dialog -->
< / div > <!-- /.modal -->
2013-10-29 23:03:36 +00:00
{% endblock %}