-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.ejs
59 lines (50 loc) · 1.71 KB
/
index.ejs
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
<% title('Card game by developers for developers') -%>
<% css.push('/assets/homepage/homepage.css'); -%>
<% js.push('https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js'); -%>
<% js.push('/assets/homepage/homepage.js'); -%>
<% include features/common/header -%>
<div class="body-content-container">
<div class="city"></div>
</div>
<div class="card-light"></div>
<div class="machine-tower"></div>
<div class="hero-light"></div>
<div class="machine-red-eye"></div>
<div class="body-page body-homepage">
<div class="hologram-laser hologram-laser-game"></div>
<div class="hologram-laser hologram-laser-cards"></div>
<div class="hologram-laser hologram-laser-contribute"></div>
<div class="panel panel-game">
<div class="hologram-panel">
<a class="column" href="memory-overflow.html">
<div class="cursor"></div>
<span><%= __('Memory Overflow') %></span>
</a>
<a class="column" href="story.html">
<div class="cursor"></div>
<span><%= __('The Story') %></span>
</a>
<a class="column" href="game-rules.html">
<div class="cursor"></div>
<span><%= __('Game rules') %></span>
</a>
</div>
</div>
<div class="panel panel-cards">
<div class="hologram-panel">
<a class="column column-100" href="cards.html">
<div class="cursor"></div>
<span><%= __('Cards & Editions') %></span>
</a>
</div>
</div>
<div class="panel panel-contribute">
<div class="hologram-panel">
<a class="column column-100" href="contribute.html">
<div class="cursor"></div>
<span><%= __('Contribute! Join the C.A.M.') %></span>
</a>
</div>
</div>
</div>
<% include features/common/footer -%>