2013-09-24 22:21:14 +00:00
<!DOCTYPE html>
2013-10-14 21:50:07 +00:00
< html ng-app = "quay" >
2013-09-23 16:37:40 +00:00
< head >
2013-10-14 21:50:07 +00:00
{% block title %}
{% endblock %}
{% block added_meta %}
{% endblock %}
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
2013-09-24 22:21:14 +00:00
2014-05-09 22:49:33 +00:00
{% for style_url in external_styles %}
< link rel = "stylesheet" href = "{{ style_url }}" type = "text/css" >
{% endfor %}
2013-09-24 22:21:14 +00:00
2013-10-13 20:50:48 +00:00
<!-- Icons -->
2015-10-30 16:18:34 +00:00
< link rel = "shortcut icon" href = "/static/img/quay_favicon.png" type = "image/png" / >
2015-11-03 03:15:48 +00:00
< meta property = "og:image" content = "{{ preferred_scheme }}://{{ hostname }}/static/img/quay_preview.png" / >
2013-10-13 20:50:48 +00:00
<!-- /Icons -->
2015-02-06 22:52:09 +00:00
{% for style_path, cache_buster in main_styles %}
2014-04-15 19:51:32 +00:00
< link rel = "stylesheet" href = "/static/{{ style_path }}?v={{ cache_buster }}" type = "text/css" >
{% endfor %}
2015-02-06 22:52:09 +00:00
{% for style_path, cache_buster in library_styles %}
2014-04-15 19:51:32 +00:00
< link rel = "stylesheet" href = "/static/{{ style_path }}?v={{ cache_buster }}" type = "text/css" >
{% endfor %}
2013-10-14 21:50:07 +00:00
{% block added_stylesheets %}
{% endblock %}
2014-04-09 01:10:33 +00:00
< script type = "text/javascript" >
2015-05-14 21:15:39 +00:00
window.__endpoints = {{ route_data|safe }}.paths;
2014-04-09 01:10:33 +00:00
window.__features = {{ feature_set|safe }};
window.__config = {{ config_set|safe }};
2014-11-05 21:43:37 +00:00
window.__oauth = {{ oauth_set|safe }};
2014-11-17 19:54:07 +00:00
window.__auth_scopes = {{ scope_set|safe }};
2014-04-09 01:10:33 +00:00
window.__token = '{{ csrf_token() }}';
< / script >
2014-05-09 22:49:33 +00:00
{% for script_url in external_scripts %}
< script src = "{{ script_url }}" > < / script >
{% endfor %}
2014-04-18 15:02:13 +00:00
2015-02-06 22:52:09 +00:00
{% for script_path, cache_buster in library_scripts %}
2014-04-15 19:51:32 +00:00
< script src = "/static/{{ script_path }}?v={{ cache_buster }}" > < / script >
{% endfor %}
2014-04-09 01:10:33 +00:00
2013-10-14 21:50:07 +00:00
{% block added_dependencies %}
{% endblock %}
2014-11-24 21:07:38 +00:00
2015-02-06 22:52:09 +00:00
{% for script_path, cache_buster in main_scripts %}
2014-04-15 19:51:32 +00:00
< script src = "/static/{{ script_path }}?v={{ cache_buster }}" > < / script >
{% endfor %}
2013-10-14 21:50:07 +00:00
2014-04-28 22:59:22 +00:00
{% if sentry_public_dsn %}
< script type = "text/javascript" >
Raven.config('{{ sentry_public_dsn }}').install();
< / script >
{% endif %}
2014-04-09 01:10:33 +00:00
{% if mixpanel_key %}
2013-10-14 21:50:07 +00:00
<!-- start Mixpanel --> < script type = "text/javascript" >
2013-10-10 21:32:32 +00:00
(function(e,b){if(!b.__SV){var a,f,i,g;window.mixpanel=b;a=e.createElement("script");a.type="text/javascript";a.async=!0;a.src=("https:"===e.location.protocol?"https:":"http:")+'//cdn.mxpnl.com/libs/mixpanel-2.2.min.js';f=e.getElementsByTagName("script")[0];f.parentNode.insertBefore(a,f);b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]); b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!==
typeof d?c=b[d]=[]:d="mixpanel";c.people=c.people||[];c.toString=function(b){var a="mixpanel";"mixpanel"!==d&&(a+="."+d); b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.track_charge people.clear_charges people.delete_user".split(" ");for(g=0;g< i.length ; g + + ) f ( c , i [ g ] ) ;
b._i.push([a,e,d])};b.__SV=1.2}})(document,window.mixpanel||[]);
2014-04-08 23:14:24 +00:00
mixpanel.init("{{ mixpanel_key }}", { track_pageview : false, debug: {{ is_debug }} });< / script > <!-- end Mixpanel -->
2014-04-09 01:10:33 +00:00
{% endif %}
2014-08-08 00:44:59 +00:00
{% if google_analytics_key %}
< 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');
2014-11-24 21:07:38 +00:00
2014-08-08 00:44:59 +00:00
ga('create', '{{ google_analytics_key }}', 'auto');
ga('require', 'displayfeatures');
ga('send', 'pageview');
< / script >
{% endif %}
2013-09-23 16:37:40 +00:00
< / head >
2014-08-12 21:15:46 +00:00
< body ng-class = "pageClass + ' ' + (user.anonymous ? 'anon' : 'signedin')" class = "co-img-bg-network" >
2014-08-12 01:47:04 +00:00
< div id = "co-l-footer-wrapper" >
< nav class = "navbar navbar-default header-bar co-m-navbar co-fx-box-shadow" role = "navigation" > < / nav >
2015-02-24 22:41:30 +00:00
< div class = "quay-service-status-bar" quay-require = "['BILLING']" > < / div >
2014-08-12 01:47:04 +00:00
< div id = "padding-container" >
< div id = "co-l-view-container" >
2014-12-22 20:13:23 +00:00
< div ng-class = "newLayout ? '' : 'main-panel co-fx-box-shadow-heavy'" >
2014-08-12 01:47:04 +00:00
{% block body_content %}
2013-11-20 21:17:47 +00:00
2014-08-12 01:47:04 +00:00
{% endblock %}
< / div >
< / div >
< / div >
< div id = "co-l-footer-push" > < / div >
2013-11-20 21:17:47 +00:00
< / div >
2014-08-12 01:47:04 +00:00
< nav id = "co-l-footer" class = "page-footer hidden-xs" >
< div class = "col-md-8" >
< ul >
2015-02-18 16:57:37 +00:00
< li > < span class = "copyright" > © 2015 CoreOS, Inc.< / span > < / li >
2015-11-02 19:16:04 +00:00
< li > < a href = "http://blog.quay.io" > Blog< / a > < / li >
2014-08-12 01:47:04 +00:00
< li quay-require = "['BILLING']" > < a href = "/tos" target = "_self" > Terms< / a > < / li >
< li quay-require = "['BILLING']" > < a href = "/privacy" target = "_self" > Privacy< / a > < / li >
< li quay-require = "['BILLING']" > < a href = "/security/" target = "_self" > Security< / a > < / li >
< li quay-require = "['BILLING']" > < a href = "/about/" target = "_self" > About< / a > < / li >
2014-10-22 18:49:33 +00:00
< li > < b > < a href = "{{ contact_href or '/contact/' }}" target = "_self" > Contact< / a > < / b > < / li >
2015-02-24 22:41:30 +00:00
< li quay-require = "['BILLING']" >
< span class = "quay-service-status" > < / span >
< / li >
2014-08-12 01:47:04 +00:00
< / ul >
2014-01-06 22:15:46 +00:00
< / div >
2014-08-12 01:47:04 +00:00
< div class = "col-md-4" >
< a href = "https://coreos.com" target = "_blank" > < img src = "/static/img/coreos.svg" > < / a >
< / div >
< / nav >
2013-11-20 21:17:47 +00:00
2013-12-26 22:45:16 +00:00
<!-- Modal message dialog -->
< div class = "modal fade" id = "couldnotloadModal" data-backdrop = "static" >
< div class = "modal-dialog" >
< div class = "modal-content" >
< div class = "modal-header" >
< h4 class = "modal-title" > Uh Oh...< / h4 >
2013-11-20 21:17:47 +00:00
< / div >
2013-12-26 22:45:16 +00:00
< div class = "modal-body" >
2015-11-02 19:16:04 +00:00
Something went wrong when trying to load Quay! Please report this to < a href = "mailto:support@quay.io" > support@quay.io< / a > .
2013-12-26 22:45:16 +00:00
< / div >
< div class = "modal-footer" >
< / div >
< / div > <!-- /.modal - content -->
< / div > <!-- /.modal - dialog -->
< / div > <!-- /.modal -->
2013-10-22 19:51:57 +00:00
2014-04-09 00:33:20 +00:00
{% if show_chat %}
2013-10-22 19:51:57 +00:00
<!-- begin olark code -->
< script data-cfasync = "false" type = 'text/javascript' > / * < ! [ C D A T A [ * / w i n d o w . o l a r k | | ( f u n c t i o n ( c ) { v a r f = w i n d o w , d = d o c u m e n t , l = f . l o c a t i o n . p r o t o c o l = = " h t t p s : " ? " h t t p s : " : " h t t p : " , z = c . n a m e , r = " l o a d " ; v a r n t = f u n c t i o n ( ) {
f[z]=function(){
(a.s=a.s||[]).push(arguments)};var a=f[z]._={
},q=c.methods.length;while(q--){(function(n){f[z][n]=function(){
f[z]("call",n,arguments)}})(c.methods[q])}a.l=c.loader;a.i=nt;a.p={
0:+new Date};a.P=function(u){
a.p[u]=new Date-a.p[0]};function s(){
a.P(r);f[z](r)}f.addEventListener?f.addEventListener(r,s,false):f.attachEvent("on"+r,s);var ld=function(){function p(hd){
hd="head";return["< ",hd,">< /",hd,">< ",i,' onl' + 'oad="var d=',g,";d.getElementsByTagName('head')[0].",j,"(d.",h,"('script')).",k,"='",l,"//",a.l,"'",'"',">< /",i,">"].join("")}var i="body",m=d[i];if(!m){
return setTimeout(ld,100)}a.P(1);var j="appendChild",h="createElement",k="src",n=d[h]("div"),v=n[j](d[h](z)),b=d[h]("iframe"),g="document",e="domain",o;n.style.display="none";m.insertBefore(n,m.firstChild).id=z;b.frameBorder="0";b.id=z+"-loader";if(/MSIE[ ]+6/.test(navigator.userAgent)){
b.src="javascript:false"}b.allowTransparency="true";v[j](b);try{
b.contentWindow[g].open()}catch(w){
c[e]=d[e];o="javascript:var d="+g+".open();d.domain='"+d.domain+"';";b[k]=o+"void(0);"}try{
var t=b.contentWindow[g];t.write(p());t.close()}catch(x){
b[k]=o+'d.write("'+p().replace(/"/g,String.fromCharCode(92)+'"')+'");d.close();'}a.P(2)};ld()};nt()})({
loader: "static.olark.com/jsclient/loader0.js",name:"olark",methods:["configure","extend","declare","identify"]});
/* custom configuration goes here (www.olark.com/documentation) */
olark.identify('1189-336-10-9918');/*]]>*/< / script > < noscript > < a href = "https://www.olark.com/site/1189-336-10-9918/contact" title = "Contact us" target = "_blank" > Questions? Feedback?< / a > powered by < a href = "http://www.olark.com?welcome" title = "Olark live chat software" > Olark live chat software< / a > < / noscript >
<!-- end olark code -->
2014-04-09 00:33:20 +00:00
{% endif %}
2013-11-20 21:17:47 +00:00
2014-02-06 02:00:04 +00:00
< div class = "angular-tour-ui" inline = "false" tour = "angular_tour_current" > < / div >
2013-09-23 16:37:40 +00:00
< / body >
2013-10-14 21:50:07 +00:00
< / html >