blob: e135745ef7085c11b33a15429081728117fd6b75 [file] [log] [blame]
Chris Danisba13da22020-12-21 13:25:09 -05001<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1">
6 <title>WMF SRE Emergency Button</title>
7 <!-- Nice embeds on Slack/Discord/Twitter. -->
8 <meta name="twitter:card" content="summary">
Chris Danis7bea1a62020-12-23 11:46:55 -05009 <meta name="twitter:title" content="Wikimedia SRE Emergency Contact">
10 <meta name="twitter:description" content="Wikimedia Foundation staff and other trusted individuals can page SRE in the event of an emergency.">
Chris Danisba13da22020-12-21 13:25:09 -050011
12 <link rel="stylesheet" href="{{ url_for('static', filename='bulma.min.v0.9.1.css') }}">
13 <style>
14 .narrow {
15 max-width: 30rem !important;
16 }
Chris Danis6df61692021-01-08 13:07:12 -050017 .panel-block, .table {
Chris Danisba13da22020-12-21 13:25:09 -050018 word-break: break-word; /* Fixes iPhone SE-sized screens. https://github.com/jgthms/bulma/pull/1641 */
19 }
Chris Danis6df61692021-01-08 13:07:12 -050020 .debug-table-key {
21 word-break: initial; /* But don't break words of keys in the k/v pair debug table. */
22 }
Chris Danisba13da22020-12-21 13:25:09 -050023 </style>
24 </head>
25
26 <body>
27 <header class="container is-max-desktop">
28 <nav class="level is-mobile pt-1 mx-2">
29 <div class="level-left">
30 <div class="level-item">
31 <a href="/">
32 <img style="height: 5em;"
33 src="https://upload.wikimedia.org/wikipedia/commons/3/31/Wikimedia_Foundation_logo_-_vertical.svg">
34 </a>
35 </div>
36 </div>
37 {% if topright_button %}
38 <div class="level-right">
39 <div class="level-item">
40 <a class="button is-primary is-danger" href="/protected/page_form">
41 <strong>Wake up an SRE</strong>
42 </a>
43 </div>
44 </div>
45 {% endif %}
46 </nav>
47 <div class="container has-text-centered">
48 <h1 class="title">
49 📟 SRE Emergency Contact
50 </h1>
51 </div>
52 </header>
53
54 {% block content %}{% endblock %}
55
56 <footer class="footer">
Chris Danis721b8132020-12-23 15:13:48 -050057 <div class="content has-text-centered is-size-7">
58 <p>
Chris Danisba13da22020-12-21 13:25:09 -050059 <a href="https://wikimediafoundation.org/"><img style="height: 5em;"
60 src="https://upload.wikimedia.org/wikipedia/commons/3/31/Wikimedia_Foundation_logo_-_vertical.svg"
61 alt="Wikimedia Foundation logo">
62 </a>
Chris Danis721b8132020-12-23 15:13:48 -050063 </p><p>
Chris Danisba13da22020-12-21 13:25:09 -050064 This app is <strong>Klaxon</strong> by <a href="https://meta.wikimedia.org/wiki/User:_CDanis_(WMF)">CDanis (WMF)</a>.
Chris Danis721b8132020-12-23 15:13:48 -050065 </p><p>
66 Have more questions? See the <a href="https://wikitech.wikimedia.org/wiki/Klaxon#FAQ">FAQ</a>.
67 </p><p>
Chris Danis23902772020-12-23 11:11:02 -050068 <a href="{{ config['KLAXON_REPOSITORY'] }}">Source code</a> is available under the <a
Chris Danisba13da22020-12-21 13:25:09 -050069 href="https://www.gnu.org/licenses/agpl-3.0.html">GNU AGPL</a>.
70 </p>
71 </div>
72 </footer>
73
74 {% block coda %}{% endblock %}
75 </body>
76</html>