forked from volnt/lyon.ninja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (49 loc) · 3 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
<!DOCTYPE html>
<html lang="en" ng-app="app">
<head>
<meta charset="utf-8">
<title>lyon.ninja; Best developers in Lyon.</title>
<meta name="description" content="lyon.ninja is a list of the best developers in Lyon. Submit your profile with a pull request.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/webicons.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="images/favicon.ico">
<script type="txt/javascript">
(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');
ga('create', 'UA-62817087-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body ng-controller="IndexCtrl">
<section class="header">
<h2 class="title">Best developers in Lyon.</h2>
<a class="button button-primary" href="https://github.com/volnt/lyon.ninja">Join the list</a>
</section>
<div class="container">
<div class="tags">
Filter tags : <a class="button button-primary" ng-repeat="tag in tags" ng-click="toggleTag(tag)">{{ tag }}</a><form ng-submit="toggleTag(formTag); formTag=''"><input type="text" ng-model="formTag" placeholder="#newtag"></form>
</div>
<div class="row developer" ng-repeat="developer in developers | filterByTags:tags">
<h5><a ng-href="{{ developer.website }}" ng-if="developer.website">#</a> {{ developer.name }} · <small>{{ developer.headline }}</small></h5>
<div class="twelve columns svg">
<a ng-href="mailto:{{ developer.email }}" class="webicon mail" ng-if="developer.email">Mail</a>
<a ng-href="https://github.com/{{ developer.github }}" class="webicon github" ng-if="developer.github" target="_blank">Github</a>
<a ng-href="https://linkedin.com/in/{{ developer.linkedin }}" class="webicon linkedin" ng-if="developer.linkedin" target="_blank">Linkedin</a>
<a ng-href="https://twitter.com/{{ developer.twitter }}" class="webicon twitter" ng-if="developer.twitter" target="_blank">Twitter</a>
<a ng-href="https://careers.stackoverflow.com/{{ developer.socareers }}" class="webicon stackoverflow" ng-if="developer.socareers" target="_blank">Stackoverflow Careers</a>
<span class="tag" ng-repeat="tag in developer.tags">
<a ng-click="toggleTag(tag)" class="button" ng-class="tags.indexOf(tag) !== -1 ? 'button-primary' : ''">{{ tag }}</a>
</span>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.15/angular.min.js"></script>
<script type="text/javascript" src="js/app.js"></script>
</html>