-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
89 lines (74 loc) · 3.2 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Technology Radar 2015</title>
<meta name="description" content="A little technology radar map inspired from Thoughtworks publication Technology Radar">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="images/favicon.png" sizes="32x32">
<link rel="apple-touch-icon" href="images/favicon.png">
<link rel="stylesheet" href="dist/radar.min.css">
</head>
<body>
<div class="layoutswitch">
<label for="layout">List</label>
<input type="checkbox" name="layout" class="js-switch" checked />
<label for="layout" class="">Radar</label>
</div>
<div class="radar">
<div class="xline"></div>
<div class="yline"></div>
<div id="blips"></div>
<div class="techniques"><h3>Techniques</h3></div>
<div class="tools"><h3>Tools</h3></div>
<div class="frameworks"><h3>Frameworks</h3></div>
<div class="platforms"><h3>Platforms</h3></div>
<div class="adopt"></div>
<div class="trial"></div>
<div class="assess"></div>
<div class="hold"></div>
</div>
<footer role="contentinfo" class="footer">
<div class="container p4">
<div class="clearfix">
<div class="sm-col sm-col-12 lg-col-6">
<p>A simple technology radar map, made famous by <a href="http://www.thoughtworks.com/radar/">Thoughtworks</a></p>
<p class="mt0 pt0">
<a href="https://github.com/urre/radar#make-your-own-radar" class="mr4">Make your own radar?</a>
</p>
</div>
<div class="sm-col sm-col-12 lg-col-6">
<a href="https://twitter.com/share" class="twitter-share-button" data-size="large">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>
</div>
</div>
<div class="footer__copy center bg-white p2">
<p>
<small>A project by <a href="http://urre.me" class="">Urban Sandén</a></small>
</p>
<p>
<iframe src="http://ghbtns.com/github-btn.html?user=urre&repo=radar&type=watch" allowtransparency="true" frameborder="0" scrolling="0" width="74px" height="20px"></iframe>
</p>
</div>
</footer>
<script id="usertmpl" type="text/template">
{{#user}}
<header role="banner" class="center header" style="background-image: url({{background}}); ">
<h1>Technology Radar 2015</h1>
<p>{{#gravatar email size="64"}}{{/gravatar}}<a class="white" href="{{website}}">{{name}}</a></p>
</header>
{{/user}}
</script>
<script id="blipstmpl" type="text/template">
{{#blips}}
<a class="blip" rel="tooltip" href="{{link}}" target="_blank" data-color="{{area}}" data-status="{{status}}" title="{{title}}"></a>
{{/blips}}
</script>
<script src="dist/radar.min.js"></script>
</body>
</html>