-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (83 loc) · 4.1 KB
/
index.html
File metadata and controls
96 lines (83 loc) · 4.1 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
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
90
91
92
93
94
95
96
<!DOCTYPE html>
<html ng-app="makerscience">
<head>
<title>MakerScience</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<base href="/">
<link href="/css/screen.css" media="screen, projection" rel="stylesheet" type="text/css" />
<link href="/css/print.css" media="print" rel="stylesheet" type="text/css" />
<link href="/css/cookieconsent.css" media="screen" rel="stylesheet" type="text/css" />
<!-- bower:css -->
<!-- NO COMMIT HERE -->
<!-- endbower -->
<link rel="icon" type="image/png" href="favicon.png" />
</head>
<body>
<div class="container-fluid">
<ng-include src="'/views/base/header.html'"></ng-include>
<ui-view>
</ui-view>
<ng-include src="'/views/base/footer.html'"></ng-include>
</div><!-- .container-fluid -->
<!-- bower:js -->
<!-- NO COMMIT HERE -->
<!-- endbower -->
<script src="https://www.google.com/recaptcha/api.js?onload=vcRecaptchaApiLoaded&render=explicit" async defer></script>
<script src="/js/config.js"></script>
<script src="/js/utils.js"></script>
<script src="/js/makerscience/profile/controllers.js"></script>
<script src="/js/makerscience/profile/directives.js"></script>
<script src="/js/makerscience/profile/services.js"></script>
<script src="/js/makerscience/base/controllers.js"></script>
<script src="/js/makerscience/base/services.js"></script>
<script src="/js/makerscience/base/filters.js"></script>
<script src="/js/makerscience/projects/controllers.js"></script>
<script src="/js/makerscience/projects/services.js"></script>
<script src="/js/makerscience/project-form/controllers.js"></script>
<script src="/js/makerscience/resources/controllers.js"></script>
<script src="/js/makerscience/resource-form/controllers.js"></script>
<script src="/js/makerscience/catalog/services.js"></script>
<script src="/js/makerscience/map/controllers.js"></script>
<script src="/js/makerscience/forum/directives.js"></script>
<script src="/js/makerscience/forum/controllers.js"></script>
<script src="/js/makerscience/forum/services.js"></script>
<script src="/js/commons/form/services.js"></script>
<script src="/js/directives/inputfile/directives.js"></script>
<script src="/js/directives/avatar/directives.js"></script>
<script src="/js/directives/cover-button/directives.js"></script>
<script src="/js/directives/report-abuse/directives.js"></script>
<script src="/js/directives/ng-thumb/directives.js"></script>
<script src="/js/directives/socialshare/directives.js"></script>
<script src="/js/commons/community/controllers.js"></script>
<script src="/js/commons/community/directives.js"></script>
<script src="/js/commons/gallery/services.js"></script>
<script src="/js/commons/gallery/directives.js"></script>
<script src="/js/commons/gallery/controllers.js"></script>
<script src="/js/commons/gallery-list/directives.js"></script>
<script src="/js/commons/scout/services.js"></script>
<script src="/js/commons/accounts/services.js"></script>
<script src="/js/commons/accounts/controllers.js"></script>
<script src="/js/commons/tags/directives.js"></script>
<script src="/js/commons/tags/controllers.js"></script>
<script src="/js/commons/tags/services.js"></script>
<script src="/js/commons/ucomment/controllers.js"></script>
<script src="/js/commons/ucomment/directives.js"></script>
<script src="/js/commons/ucomment/services.js"></script>
<script src="/js/commons/megafon/controllers.js"></script>
<script src="/js/commons/megafon/services.js"></script>
<script src="/js/commons/starlet/controllers.js"></script>
<script src="/js/commons/starlet/services.js"></script>
<script src="/js/app.js"></script>
<script type="text/javascript">
window.cookieconsent_options = {
"message":"En poursuivant votre navigation vous acceptez l'utilisation de cookies pour vous proposer des services et des\
offres adaptées à vos centres d'intérêts et mesurer la fréquentation de nos services",
"dismiss":"ok",
"learnMore":"Plus d'info.",
"link":"http://makerscience.fr/cgu",
"theme":"/css/cookieconsent.css"};
</script>
</body>
</html>