-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (49 loc) · 1.71 KB
/
Copy pathindex.html
File metadata and controls
60 lines (49 loc) · 1.71 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Projet SAS - Homepage</title>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/css/stylesheet.css">
<script src="./assets/js/jquery-2.2.3.min.js"></script>
</head>
<body>
<header>
<h1>Projet S.A.S.</h1>
<h5>Système d'Automatisation de Salle</h5>
</header>
<main>
<div class="flex_grow">
<article class="menu_block article_blue">
<h3><a href="./post/story.html">En apprendre plus sur le projet...</a></h3>
</article>
<article class="menu_block article_green">
<h3><a href="https://github.com/projet-SAS">voir sur github...</a></h3>
</article>
<article class="menu_block article_red">
<h3><a href="./post/updates.html">Voir les mises à jours...</a></h3>
</article>
<article class="menu_block article_orange">
<h3><a href="./post/authors.html">à propos des auteurs...</a></h3>
</article>
</div>
</main>
<footer>
<div class="footer_left">
Copyright 2015 - 2016 All rights reserved.
</div>
<div class="footer_right">
this website was made with <a href="https://github.com/keikyoku" target="_blank">love</a>.
</div>
</footer>
<script src="./assets/js/plugins.js"></script>
<script>
(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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-73757815-2', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>