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 }};
2015-11-10 20:08:14 +00:00
window.__vuln_priority = {{ vuln_priority_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" >
2016-01-20 23:03:21 +00:00
<!-- Global Nav -->
< div class = "co-m-global-nav" quay-require = "['BILLING']" >
< div class = "col-lg-6 col-md-6 col-sm-6 co-m-global-nav-left" >
< div class = "co-m-global-nav-item" >
< a href = "https://coreos.com/" data-category = "Global Navigation" data-event " coreos . com " >
< svg version = "1.1" xmlns = "http://www.w3.org/2000/svg" xmlns:xlink = "http://www.w3.org/1999/xlink" x = "0px" y = "0px"
preserveAspectRatio="xMidYMin" height="15px" viewBox="28.689 45.527 734.622 214.947"
enable-background="new 28.689 45.527 734.622 214.947" xml:space="preserve">
< g >
< g >
< path fill = "#53A3DA" d = "M136.168,45.527C76.898,45.527,28.689,93.739,28.689,153c0,59.265,48.209,107.474,107.479,107.474
c59.252,0,107.465-48.209,107.465-107.474C243.633,93.739,195.42,45.527,136.168,45.527z"/>
< path fill = "#F1606D" d = "M136.168,55.389c-17.283,0-31.941,27.645-37.235,66.069c-0.169,1.236-0.333,2.487-0.478,3.746
c-0.723,6.047-1.213,12.335-1.458,18.808c-0.117,2.962-0.175,5.956-0.175,8.988c0,3.029,0.058,6.029,0.175,8.985
c0.245,6.472,0.735,12.764,1.458,18.811c8.104,1.049,16.769,1.761,25.807,2.099c3.907,0.146,7.872,0.233,11.907,0.233
c4.023,0,8-0.088,11.895-0.233c9.049-0.338,17.708-1.05,25.819-2.099c0.892-0.114,1.77-0.239,2.659-0.368
c33.754-4.74,57.235-15.232,57.235-27.428C233.776,99.088,190.071,55.389,136.168,55.389z"/>
< path fill = "#FFFFFF" d = "M176.541,125.569c-0.979-1.428-2.029-2.796-3.148-4.11c-8.956-10.557-22.297-17.265-37.224-17.265
c-4.839,0-9.148,7.407-11.907,18.909c-1.096,4.586-1.947,9.819-2.495,15.498c-0.432,4.551-0.665,9.391-0.665,14.399
s0.233,9.849,0.665,14.396c4.554,0.432,9.387,0.664,14.402,0.664c5.009,0,9.842-0.232,14.396-0.664
c10.011-0.95,18.653-2.875,24.775-5.411c6.046-2.501,9.624-5.615,9.624-8.985C184.963,142.832,181.858,133.388,176.541,125.569z"
/>
< / g >
< g >
< path fill = "#231F20" d = "M344.891,100.053c12.585,0,22.816,6.138,29.262,13.062l-10.064,11.326
c-5.353-5.192-11.175-8.495-19.041-8.495c-16.839,0-28.953,14.16-28.953,37.291c0,23.448,11.169,37.608,28.32,37.608
c9.128,0,15.895-3.775,21.717-10.228l10.067,11.169c-8.335,9.598-19.038,14.95-32.099,14.95c-26.119,0-46.731-18.88-46.731-53.025
C297.37,120.036,318.454,100.053,344.891,100.053z"/>
< path fill = "#231F20" d = "M416.961,125.701c19.352,0,36.822,14.793,36.822,40.597c0,25.647-17.471,40.439-36.822,40.439
c-19.197,0-36.66-14.792-36.66-40.439C380.301,140.494,397.764,125.701,416.961,125.701z M416.961,191.945
c11.33,0,18.25-10.228,18.25-25.647c0-15.577-6.92-25.804-18.25-25.804s-18.094,10.227-18.094,25.804
C398.867,181.717,405.631,191.945,416.961,191.945z"/>
< path fill = "#231F20" d = "M459.771,127.589h14.943l1.26,13.688h0.629c5.506-10.07,13.691-15.577,21.871-15.577
c3.938,0,6.455,0.472,8.811,1.574l-3.148,15.734c-2.67-0.784-4.717-1.257-8.018-1.257c-6.139,0-13.539,4.245-18.256,15.893v47.203
h-18.092L459.771,127.589L459.771,127.589z"/>
< path fill = "#231F20" d = "M541.121,125.701c20.928,0,31.941,15.107,31.941,36.667c0,3.458-0.314,6.604-0.787,8.495h-49.09
c1.57,14.003,10.379,21.869,22.811,21.869c6.613,0,12.273-2.041,17.941-5.662l6.135,11.326
c-7.395,4.878-16.676,8.341-26.432,8.341c-21.404,0-38.08-14.95-38.08-40.439C505.561,141.12,523.023,125.701,541.121,125.701z
M557.326,159.376c0-12.277-5.189-19.671-15.732-19.671c-9.125,0-16.996,6.768-18.57,19.671H557.326z"/>
< path fill = "#F1606D" d = "M600.602,152.607c0-32.729,17.785-53.344,42.799-53.344c24.863,0,42.641,20.615,42.641,53.344
c0,32.889-17.777,54.13-42.641,54.13C618.387,206.737,600.602,185.496,600.602,152.607z M678.49,152.607
c0-28.639-14.158-46.731-35.09-46.731c-21.084,0-35.248,18.093-35.248,46.731c0,28.796,14.164,47.521,35.248,47.521
C664.332,200.128,678.49,181.403,678.49,152.607z"/>
< path fill = "#53A4D9" d = "M699.738,186.125c7.557,8.495,18.412,14.003,30.529,14.003c15.732,0,25.807-8.499,25.807-20.767
c0-12.904-8.494-17.154-18.723-21.717l-15.736-7.082c-8.969-3.936-20.934-10.385-20.934-25.808
c0-14.947,12.904-25.492,30.059-25.492c12.588,0,22.658,5.665,28.949,12.435l-4.244,4.878c-5.982-6.452-14.32-10.7-24.705-10.7
c-13.691,0-22.816,7.239-22.816,18.565c0,11.962,10.385,16.521,17.936,19.985l15.738,6.921
c11.486,5.195,21.713,11.647,21.713,27.539s-13.061,27.851-33.201,27.851c-15.107,0-26.75-6.451-34.932-15.576L699.738,186.125z"
/>
< / g >
< / g >
< / svg >
< / a >
< / div >
< div class = "co-m-global-nav-item" >
< a href = "https://tectonic.com/" data-category = "Global Navigation" data-event " tectonic . com " >
< svg version = "1.1" xmlns = "http://www.w3.org/2000/svg" xmlns:xlink = "http://www.w3.org/1999/xlink" x = "0px" y = "0px" preserveAspectRatio = "xMidYMin" height = "15px" viewBox = "0 0 529.586 110.059" enable-background = "new 0 0 529.586 110.059" xml:space = "preserve" >
< g >
< polygon fill = "#FFFFFF" points = "70.667,41.251 51.899,32.893 33.136,41.245 51.899,52.086 51.899,73.755 68.522,61.677 " / >
< g >
< polygon fill = "#68C28D" points = "19.5,33.372 33 . 136 , 41 . 245 51 . 899 , 32 . 893 70 . 667 , 41 . 251 68 . 522 , 61 . 677 51 . 899 , 73 . 755
51.899,89.499 80.599,68.648 84.305,33.373 51.899,18.946 "/>
< / g >
< g >
< g >
< path fill = "#243A4C" d = "M51.899,5.116L5.974,25.564l5.256,50.003l40.668,29.549l40.674-29.549l5.255-50L51.899,5.116z
M80.598,68.65L51.899,89.499V52.086L19.5,33.372l32.399-14.426l32.406,14.427L80.598,68.65z"/>
< / g >
< / g >
< / g >
< g >
< path fill = "#243A4C" d = "M130.979,32.363h-19.48V18.944h54.757v13.419h-19.371v57.138h-15.906V32.363z" / >
< path fill = "#243A4C" d = "M170.064,18.944h44.259v13.419H186.08V46.54h24.023v13.311H186.08v16.233h29.327v13.417h-45.342V18.944z" / >
< path fill = "#243A4C" d = "M248.294,17.647c8.766,0,16.125,4.328,20.885,9.2l-8.766,9.845c-3.571-3.247-6.926-5.303-11.903-5.303
c-9.848,0-17.53,8.549-17.53,22.725c0,14.501,6.816,22.942,17.097,22.942c5.843,0,9.956-2.489,13.419-6.277l8.766,9.633
c-5.844,6.816-13.638,10.387-22.4,10.387c-18.289,0-33.222-12.443-33.222-36.143C214.641,31.28,230.113,17.647,248.294,17.647z"/>
< path fill = "#243A4C" d = "M290.06,32.363h-19.478V18.944h54.754v13.419h-19.37v57.138H290.06V32.363z" / >
< path fill = "#243A4C" d = "M321.471,53.899c0-23.052,13.095-36.252,32.032-36.252c19.045,0,32.031,13.308,32.031,36.252
c0,23.048-12.985,36.899-32.031,36.899C334.565,90.799,321.471,76.947,321.471,53.899z M369.193,53.899
c0-14.068-6.061-22.51-15.691-22.51c-9.524,0-15.691,8.441-15.691,22.51c0,14.176,6.167,23.157,15.691,23.157
C363.132,77.057,369.193,68.075,369.193,53.899z"/>
< path fill = "#243A4C" d = "M450.25,18.944h16.017v70.557H450.25V18.944z" / >
< path fill = "#243A4C" d = "M503.799,17.647c8.765,0,16.123,4.328,20.884,9.2l-8.765,9.845c-3.571-3.247-6.925-5.303-11.905-5.303
c-9.846,0-17.529,8.549-17.529,22.725c0,14.501,6.817,22.942,17.098,22.942c5.843,0,9.954-2.489,13.417-6.277l8.767,9.633
c-5.845,6.816-13.636,10.387-22.401,10.387c-18.29,0-33.222-12.443-33.222-36.143C470.143,31.28,485.617,17.647,503.799,17.647z"/>
< polygon fill = "#243A4C" points = "429.862,18.944 429 . 862 , 64 . 203 406 . 055 , 18 . 944 404 . 972 , 18 . 944 389 . 713 , 18 . 944 389 . 713 , 89 . 501
404.972,89.501 404.972,44.357 428.67,89.501 445.011,89.501 445.011,18.944 "/>
< / g >
< / svg >
< / a >
< / div >
< div class = "co-m-global-nav-item" >
< a href = "https://quay.io/" data-category = "Global Navigation" data-event " quay . io " >
< svg id = "Layer_1" preserveAspectRatio = "xMidYMin" height = "15px" xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 348.09 97.57" >
< defs > < style > . cls-1 { fill : #003764 ; } . cls-2 { fill : #40b4e5 ; } < / style > < / defs > < title > quay< / title > < path class = "cls-1" d = "M179.31,95.32a20.89,20.89,0,0,1-5.09,1.61,36.5,36.5,0,0,1-7.24.65q-11.15,0-18.82-5.14A31.66,31.66,0,0,1,136.73,79,29.79,29.79,0,0,1,126.6,74.9a27.88,27.88,0,0,1-7.78-7.56,35.26,35.26,0,0,1-4.94-10.67,49.31,49.31,0,0,1-1.72-13.46,46.86,46.86,0,0,1,2.3-15.28A31.62,31.62,0,0,1,121,16.67a27.84,27.84,0,0,1,10-7,35.81,35.81,0,0,1,25.85,0,27.57,27.57,0,0,1,10,7A32.21,32.21,0,0,1,173.34,28a46.52,46.52,0,0,1,2.31,15.17q0,14.16-6,23.27a28.08,28.08,0,0,1-16.19,12,12.93,12.93,0,0,0,6.65,5.09A26.38,26.38,0,0,0,168.8,85a22.8,22.8,0,0,0,4.24-.38,23.47,23.47,0,0,0,3.49-.91Zm-51-52.1q0,11.26,4.19,17.48a13.5,13.5,0,0,0,22.74,0q4.18-6.22,4.18-17.48,0-10.51-4.19-16.41a13.9,13.9,0,0,0-22.74,0Q128.36,32.7,128.36,43.21Z" / > < path class = "cls-1" d = "M182.72,8.56h15.87V47.7q0,10.3,3.11,14.37t9,4.07q5.9,0,9.11-4.08t3.21-14.37V8.54h15.23V46.08q0,17.59-7,25.63t-20.54,8q-13.62,0-20.81-8t-7.19-25.63V8.56Z" / > < path class = "cls-1" d = "M280.33,61.83H259L254.7,78.46H238.61L260.47,8.53h19l21.9,69.92H284.62ZM277.1,49.5l-1.61-6.43q-1.5-5.25-2.9-11.15T269.8,20.54h-0.43q-1.28,5.58-2.62,11.42t-2.84,11.1L262.2,49.5H277.1Z" / > < path class = "cls-1" d = "M311.21,53.56l-21.14-45H307l6.23,16.08q1.5,4,2.84,7.67T318.93,40h0.43q1.5-4.07,2.95-7.78t2.95-7.67l6.32-16.09h16.52L327,53.56V78.44H311.22V53.56Z" / > < polygon class = "cls-2" points = "75.13 0 95.99 44.12 75.13 88.23 57.38 88.23 78.23 44.12 57.38 0 75.13 0" / > < polygon class = "cls-1" points = "57.38 88.23 36.52 44.12 57.38 0 75.13 0 54.28 44.12 75.13 88.23 57.38 88.23" / > < polygon class = "cls-2" points = "47.99 19.85 38.61 0 20.86 0 39.12 38.63 47.99 19.85" / > < polygon class = "cls-2" points = "39.12 49.6 20.86 88.23 38.61 88.23 47.99 68.38 39.12 49.6" / > < polygon class = "cls-1" points = "20.86 88.23 0 44.12 20.86 0 38.61 0 17.75 44.12 38.61 88.23 20.86 88.23" / >
< / svg >
< / a >
< / div >
< / div >
< div class = "col-lg-6 col-md-6 col-sm-6 co-m-global-nav-right co-m-text-light" >
Running the World's Containers
< / div >
< / div >
<!-- /Global Nav -->
2014-08-12 01:47:04 +00:00
< 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-12-28 18:27:32 +00:00
< li > < span class = "copyright" > © 2016 CoreOS, Inc. {{ version_number }}< / span > < / 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 >