-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (99 loc) · 4.85 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Technicie</title>
<link rel="icon" href="img/favicon.png" sizes="32x32" type="image/png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/aos.css">
</head>
<body>
<div class="jumbotron jumbotron-fluid" id="banner" style="background-image: url(img/banner-bk.jpg);">
<div class="container text-center text-md-left">
<header>
<div class="row justify-content-between">
<div class="col-2">
<img src="img/logo.png" alt="logo">
</div>
</div>
</header>
<h1 data-aos="fade" data-aos-easing="linear" data-aos-duration="1000" data-aos-once="true" class="display-3 text-white font-weight-bold my-5">
Cool people<br>
Running some servers
</h1>
<p data-aos="fade" data-aos-easing="linear" data-aos-duration="1000" data-aos-once="true" class="lead text-white my-4">
We're a committee of <a href="https://thalia.nu">Study Association Thalia</a>.
<br> And we're in charge of the website, apps and servers.
</p>
</div>
</div>
<div class="jumbotron jumbotron-fluid feature" id="feature-first">
<div class="container my-5">
<div class="row justify-content-between text-center text-md-left">
<div data-aos="fade-right" data-aos-duration="1000" data-aos-once="true" class="col-md-6">
<h2 class="font-weight-bold">The website</h2>
<p class="my-4">A backend built in Python using Django.
<br>With a fancy Bootstrap-based templating system.</p>
<a href="https://thalia.nu" class="btn my-4 font-weight-bold atlas-cta cta-pink">Check it out</a>
</div>
<div data-aos="fade-left" data-aos-duration="1000" data-aos-once="true" class="col-md-6 align-self-center">
<img src="img/feature-1.png" alt="Take a look inside" class="mx-auto d-block">
</div>
</div>
</div>
</div>
<div class="jumbotron jumbotron-fluid feature" id="feature-last">
<div class="container">
<div class="row justify-content-between text-center text-md-left">
<div data-aos="fade-left" data-aos-duration="1000" data-aos-once="true" class="col-md-6 flex-md-last">
<h2 class="font-weight-bold">The apps</h2>
<p class="my-4">
Built using the latest technologies. But it's kinda out-of-date.
<br>Multi-platform, powered by React Native. Soon replaced by Reaxit, in Flutter.
</p>
<a href="https://itunes.apple.com/nl/app/thaliapp/id1327865507" class="btn my-4 font-weight-bold atlas-cta cta-pink">Download for iOS</a>
<a href="https://play.google.com/store/apps/details?id=com.thaliapp" class="btn my-4 font-weight-bold atlas-cta cta-pink">Download for Android</a>
</div>
<div data-aos="fade-right" data-aos-duration="1000" data-aos-once="true" class="col-md-6 align-self-center flex-md-first">
<img src="img/feature-2.png" alt="Safe and reliable" class="mx-auto d-block">
</div>
</div>
</div>
</div>
<div class="jumbotron jumbotron-fluid" id="contact" style="background-image: url(img/contact-bk.png);">
<div class="container my-5">
<div class="row justify-content-between">
<div class="col-md-6 text-white">
<h2 class="font-weight-bold">Contact Us</h2>
<p class="my-4">
You can find us every Monday evening on the ground floor of Mercator 1.
</p>
<ul class="list-unstyled">
<li>Address: Toernooiveld 200, 6525 EC, Nijmegen
<li>Email: www@thalia.nu</li>
</ul>
</div>
</div>
</div>
</div>
<!-- copyright -->
<div class="jumbotron jumbotron-fluid" id="copyright">
<div class="container">
<div class="row justify-content-between">
<div class="col-md-6 text-white align-self-center text-center text-md-left my-2">
Copyright © 2021 Technicie
</div>
</div>
</div>
</div>
<!-- AOS -->
<script src="js/aos.js"></script>
<script>
AOS.init({
});
</script>
</body>
</html>