-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (94 loc) · 4.54 KB
/
index.html
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
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<title>Amoriem Labs</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="static/styles/styles.css">
<link rel="shortcut icon" href="static/images/brand/amorien_icon.png">
<script src="scripts\slideshow.js"></script>
</head>
<body class="home-body">
<div class="nav-bar" style="background-color: var(--AmoriemPink)">
<a class="nav-item" href="index.html">
<img src="static/images/brand/logo-darkpink.png">
</a>
<a class="nav-item" href="index.html">Home</a>
<a class="nav-item" href="games.html">Games</a>
<a class="nav-item" href="team.html">Team</a>
<a class="nav-item" href="news.html">News</a>
<a class="nav-item" href="about.html">About</a>
</div>
<div class="page">
<section class="section-1">
<div id="title-subtitle-text">
<div class="page-title" class="unselectable" style="text-align: center;">Amoriem Labs</div>
<div id="subtitle" class="unselectable" style="text-align: center;">Undergraduate game development studio at Yale University.</div>
</div>
<!-- Slideshow -->
<div class="slideshow-container">
<div class="mySlides fade">
<div class="numbertext">1 / 3</div>
<img src="static\images\games\rosefield-gameplay.png" style="width:100%"></img>
<div class="text">Rosefield Requiem</div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 3</div>
<img src="static\images\games\echoes-of-eternity.jpg" style="width:100%"></img>
<div class="text">Echoes of Eternity</div>
</div>
<div class="mySlides fade">
<div class="numbertext">3 / 4</div>
<img src="static\images\games\bulldog_bash.PNG" style="width:100%"></img>
<div class="text">Bulldog Bash</div>
<br>
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
<script>
let slideIndex = 0;
showSlides();
function showSlides() {
let i;
let slides = document.getElementsByClassName("mySlides");
let dots = document.getElementsByClassName("dot");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex > slides.length) {slideIndex = 1}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
setTimeout(showSlides, 5000); // Change image every 5 seconds
}
</script>
</section>
<section class="section-2">
<div class="text-and-image-container">
<div class="text-column">
<h2>Who We Are</h2>
<p>
We are <span class="highlight">Amoriem Labs</span>, Yale's first and only video game development club. Led entirely by students, we unite passionate gamers, programmers, artists, musicians, storytellers, and designers to bring digital worlds to life.
</p>
<p>
Amoriem was founded in 2019 and has been making video games ever since.
We are the place for your game design ideas and visions.
</p>
</div>
<div class="image-column">
<img src="static/images/about/amoriem_about.jpg">
</div>
</div>
</section>
<section class="section-3">
<h1>Current Projects</h1>
<h2>More Details Soon!</h2>
</section>
</div>
</body>
</html>