-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.94 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 1.94 KB
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
<!DOCTYPE html>
<html lang="fr" ng-app="AngersJS">
<head>
<title>AngersJS</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="http://fonts.googleapis.com/css?family=Istok+Web:700" rel="stylesheet" type="text/css" />
<link href="http://fonts.googleapis.com/css?family=Gudea:700" rel="stylesheet" type="text/css" />
<link href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet" type="text/css" />
<link href="css/custom.css" rel="stylesheet" type="text/css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.0.3/js/bootstrap.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.4/angular.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.4/angular-sanitize.min.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<div class="container">
<header>
<h1><a href=".">AngersJS</a></h1>
<div class="subtitle">Communauté Javascript Angevine</div>
</header>
<div class="row">
<div class="col-md-8">
<h2>Quoi de neuf ?</h2>
<div id="articles" ng-controller="ArticleListCtrl">
<div ng-repeat="article in articles">
<h3>{{article.titre}}</h3>
<p ng-bind-html="article.contenu"></p>
</div>
</div>
</div>
<div class="col-md-4">
<h2>Rejoignez-nous !</h2>
<ul>
<li><a href="http://twitter.com/Angers_JS"><i class="fa fa-twitter"></i> Twitter</a></li>
<li><a href="http://github.com/AngersJS"><i class="fa fa-github"></i> Github</a></li>
<li><a href="http://www.mainelabs.fr/"><i class="fa fa-flask"></i> Mainelabs</a></li>
</ul>
</div>
</div>
<footer>
</footer>
</div>
</body>
</html>