-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (82 loc) · 2.8 KB
/
index.html
File metadata and controls
108 lines (82 loc) · 2.8 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
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="resources/css/style.css" rel="stylesheet" type="text/css" media="all" />
<link rel="stylesheet" type="text/css" href="resources/css/font-awesome.min.css">
<script type="text/javascript" src="resources/js/menu.js"></script>
<title>A Space Story | Space Box</title>
</head>
<body>
<div id="wrapper">
<div id="header-wrapper">
<div id="header" class="container">
<div id="logo">
<h1>Accueil</h1>
</div>
<!-- // MENU // -->
<div id="menu">
<ul class="niv1">
<li class="current-page"><a href="index.html">Accueil</a></li>
<li> <!-- Onglet "Le jeu" -->
<a href="#">Le jeu</a>
<ul class="niv2">
<li><a href="le-jeu/download.html">Télécharger</a></li>
<li><a href="le-jeu/univers.html">Univers</a></li>
<li><a href="le-jeu/galerie.php">Galerie</a></li>
</ul>
</li>
<li> <!-- Onglet "Documentation" -->
<a href="#">Documentation</a>
<ul class="niv2">
<li><a href="documentation/wiki.html">Wiki</a></li>
<li><a href="documentation/doxygen/index.html" target="blank">Doc Technique</a></li>
<li><a href="https://github.com/SpaceBoxInk" target="blank">GitHub <i class="fa fa-external-link" aria-hidden="true"></i></a></li>
</ul>
</li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<!-- // FIN MENU // -->
</div>
<!-- // FIN HEADER // -->
<div id="banner">
<div class="container">
<div class="title">
<h2>A Space Story</h2>
<!-- <span class="subtitle">< insert slogan here ></span> </div>
--> <ul class="actions">
<li><a href="le-jeu/download.html" class="button" title="Disponible le 12 janvier 2018 !">Télécharger</a></li>
</ul>
</div>
</div>
</div>
<div id="actualites">
<div class="container">
<h1>Actualités</h1>
<article>
<h3>Téléchargements</h3>
<p>Des téléchargments sont disponibles pour les plates-formes Linux, Windows et Mac</p>
<a href="le-jeu/download.html" class="button">En savoir plus</a>
</article>
<article>
<h3>Documentation Technique</h3>
<p>La documentation technique est désormais disponible.</p>
<a href="documentation/doxygen/" class="button" target="blank">En savoir plus</a>
</article>
<article>
<h3>L'Histoire</h3>
<p>Vous pouvez désormais en apprendre plus sur l'histoire de <i>A Space Story</i> !</p>
<a href="le-jeu/univers.html" class="button">En savoir plus</a>
</article>
<!-- <article>
<h3>Change Log 1.0</h3>
<p>Voici le 1er change-log de A Space Story</p>
<a href="#" class="button">En savoir plus</a>
</article> -->
</div>
</div>
</div>
<footer></footer>
</body>
</html>