-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
38 lines (34 loc) · 1.36 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<title>DevRelOMeter: Are you practicing Developer Evangelism or Advocacy?</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link href='//fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css' />
</head>
<body class="devrelometer">
<header>
<h1>DevRelOMeter</h1>
<p>Are you practicing - or considering practicing - Developer <strong>Evangelism</strong> or <strong>Advocacy</strong>?</p>
</header>
<section class="activities">
<ul id="activities"></ul>
</section>
<section class="half">
<div id="gaugeChart" class="epoch gauge-large"></div>
</section>
<section class="half">
<div id="pie" class="epoch"></div>
</section>
<footer>
<p>Built by Phil <a href="https://twitter.com/leggetter">@leggetter</a> | Created whilst writing up an article on <a href="https://www.leggetter.co.uk/2016/02/03/defining-developer-relations.html">Defining Developer Relations</a> | Get the <a href="https://github.com/leggetter/devrelometer">DevRelOMeter code on GitHub</a>.
</footer>
<!-- build:js -->
<script src="./jspm_packages/system.js"></script>
<script src='./config.js'></script>
<script>
System.import('src/main');
</script>
<!-- endbuild -->
</body>
</html>