blob: 1864b81400ce6c190212c1d755977b21c4aff197 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html>
<head>
<% include ./includes/header %>
</head>
<body>
<% include ./includes/navbar %>
<!--Jumbotron-->
<div class="jumbotron special-color bounceIn">
<h2 class="display-4">Hello! Welcome to Alee Productions.</h2>
<p class="lead">We are a very small productions company.</p>
<hr class="my-4">
<p>If you want to know more about us click the button down below.</p>
<a class="btn btn-green btn-lg" href="/about" role="button">Learn more</a>
</div>
<!--Community, Video and Software-->
<div class="container">
<div class="row">
<div class="col-sm">
<center>
<div class="view overlay">
<a href="https://discord.gg/EFhRDqG">
<img src="/img/users-solid.svg" class="svg-white" height=220px>
<div class="mask flex-center rgba-green-strong">
<p class="white-text">Community</p>
</div>
</a>
</div>
<br>
Community
</center>
</div>
<div class="col-sm">
<center>
<div class="view overlay">
<a href="https://www.youtube.com/channel/UC9CIwdleH3m_PV35QqULWzA">
<img src="/img/video-solid.svg" class="svg-white" height=220px>
<div class="mask flex-center rgba-green-strong">
<p class="white-text">Video</p>
</div>
</a>
</div>
<br>
Video
</center>
</div>
<div class="col-sm">
<center>
<div class="view overlay">
<a href="https://github.com/aleeproductions">
<img src="/img/file-code-solid.svg" class="svg-white" height=220px>
<div class="mask flex-center rgba-green-strong">
<p class="white-text">Software</p>
</div>
</a>
</div>
<br>
Software
</center>
</div>
</div>
</div>
<script>
console.log("Welcome to Alee Productions :)")
alert("Please note that this website is under active development and bugs may occur.\nIf there's any report it to the GitHub repo.")
</script>
<% include ./includes/footer %>
</body>
</html>
|