2013-10-14 17:50:07 -04:00
{% extends "base.html" %}
2013-10-10 19:06:04 -04:00
2013-10-14 17:50:07 -04:00
{% block title %}
2015-11-19 21:36:14 -05:00
< title ng-bind = "title + ' · Quay'" > Quay< / title >
2013-10-14 17:50:07 -04:00
{% endblock %}
2013-09-23 12:37:40 -04:00
2013-10-14 17:50:07 -04:00
{% block added_meta %}
< base href = "/" >
2013-09-24 18:21:14 -04:00
2015-11-19 21:36:14 -05:00
< meta id = "descriptionTag" name = "description" content = "Quay is the best place to build, store, and distribute your containers. Public repositories are always free." > < / meta >
2013-10-14 17:50:07 -04:00
< meta name = "google-site-verification" content = "GalDznToijTsHYmLjJvE4QaB9uk_IP16aaGDz5D75T4" / >
< meta name = "fragment" content = "!" / >
2016-02-16 15:31:23 -05:00
{% if aci_conversion %}
2015-01-13 18:00:01 -05:00
< meta name = "ac-discovery" content = "{{ hostname }} {{ preferred_scheme }}://{{ hostname }}/c1/aci/{name}/{version}/{ext}/{os}/{arch}/" >
2015-02-05 17:55:54 -05:00
< meta name = "ac-discovery-pubkeys" content = "{{ hostname }} {{ preferred_scheme }}://{{ hostname }}/aci-signing-key" >
2016-02-16 15:31:23 -05:00
{% endif %}
2015-01-13 17:46:11 -05:00
2013-10-14 17:50:07 -04:00
{% endblock %}
2013-09-26 17:59:20 -04:00
2013-10-14 17:50:07 -04:00
{% block body_content %}
2013-11-20 16:17:47 -05:00
<!-- Note: Must be in the <body> tag -->
2014-04-15 16:35:15 -04:00
< script src = "static/standalonelib/jquery.overscroll.min.js" > < / script >
2014-11-24 16:07:38 -05:00
2013-10-14 17:50:07 -04:00
< div ng-view > < / div >
2013-11-11 19:26:56 -05:00
<!-- Modal message dialog -->
< div class = "modal fade" id = "sessionexpiredModal" data-backdrop = "static" >
< 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 14:45:39 -05: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-11 19:26:56 -05:00
< / div >
< div class = "modal-footer" >
2014-02-27 14:45:39 -05:00
< a href = "javascript:void(0)" class = "btn btn-primary" data-dismiss = "modal" onclick = "location = '/signin'" > Sign In< / a >
2013-11-11 19:26:56 -05:00
< / div >
< / div > <!-- /.modal - content -->
< / div > <!-- /.modal - dialog -->
< / div > <!-- /.modal -->
2014-05-28 15:22:36 -04:00
<!-- Modal message dialog -->
2014-08-25 15:30:29 -04:00
< div class = "modal fade" id = "cannotContactService" data-backdrop = "static" >
2014-05-28 15:22:36 -04:00
< div class = "modal-dialog" >
< div class = "modal-content" >
< div class = "modal-header" >
2014-08-25 15:30:29 -04:00
< h4 class = "modal-title" > Cannot Contact External Service< / h4 >
2014-05-28 15:22:36 -04:00
< / div >
< div class = "modal-body" >
2014-08-25 15:30:29 -04:00
A connection to an external service has failed. Please reload the page to try again.
2014-05-28 15:22:36 -04:00
< / div >
< / div > <!-- /.modal - content -->
< / div > <!-- /.modal - dialog -->
< / div > <!-- /.modal -->
2013-10-29 19:03:36 -04:00
{% endblock %}