-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·141 lines (114 loc) · 4.86 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="Nicolas De Loof">
<title>Allons-y!</title>
<link rel="icon" href="favicon.ico" />
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:100i,400" rel="stylesheet" type="text/css">
<!-- Plugin CSS -->
<link href="vendor/magnific-popup/magnific-popup.css" rel="stylesheet" type="text/css">
<!-- Custom styles for this template -->
<link href="css/freelancer.css" rel="stylesheet">
</head>
<body id="page-top">
<!-- Header -->
<header class="masthead bg-primary text-white text-center">
<div class="container">
<img class="img-fluid mb-5 d-block mx-auto" src="img/logo.png" alt="Allons-y!">
</div>
</header>
<!-- About Section -->
<section class="bg-secondary text-white mb-0" id="about">
<div class="container">
<h2 class="text-center text-uppercase text-white">About</h2>
<hr class="star-light mb-5">
<div class="row">
<div class="col-lg-2 ml-auto">
</div>
<div class="col-lg-8 ml-auto">
<p class="about">
<blockquote cite="http://tardis.wikia.com/wiki/Wibbly_wobbly,_timey_wimey">
People assume that <b>software development</b> is a strict progression of cause to effect, but *actually* from a non-linear, non-subjective viewpoint - it's more like a big ball of wibbly wobbly... boggy buggy... stuff.
<div align="right">-- The Dock·tor</div>
</blockquote>
</p>
<center><iframe id="ytplayer" type="text/html"
src="https://www.youtube.com/embed/q2nNzNo_Xps?modestbranding=1&rel=0&color=4D4248"
width="560" height="315" frameborder="0" allowfullscreen="">Allons-y!</iframe>
</center>
</div>
<div class="col-lg-2 ml-auto">
</div>
</div>
<div class="text-center mt-4">
<a class="btn btn-xl btn-outline-light" href="mailto:[email protected]">
<i class="fas fa-email mr-2"></i>
Ping me!
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer text-center">
<div class="container">
<div class="row">
<div class="col-md-4 mb-5 mb-lg-0">
</div>
<div class="col-md-4 mb-5 mb-lg-0">
<h4 class="text-uppercase mb-4">Around the Internet</h4>
<ul class="list-inline mb-0">
<li class="list-inline-item">
<a class="btn btn-outline-light btn-social text-center rounded-circle"
href="https://www.twitter.com/ndeloof">
<i class="fab fa-fw fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn btn-outline-light btn-social text-center rounded-circle"
href="https://www.linkedin.com/in/ndeloof">
<i class="fab fa-fw fa-linkedin-in"></i>
</a>
</li>
<li class="list-inline-item">
<a class="btn btn-outline-light btn-social text-center rounded-circle"
href="https://www.github.com/ndeloof">
<i class="fab fa-fw fa-github"></i>
</a>
</li>
</ul>
</div>
<div class="col-md-4">
</div>
</div>
</div>
</footer>
<div class="copyright py-4 text-center text-white">
<div class="container">
<small>Copyright © Nicolas De Loof 2019</small>
</div>
</div>
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes) -->
<div class="scroll-to-top d-lg-none position-fixed ">
<a class="js-scroll-trigger d-block text-center text-white rounded" href="#page-top">
<i class="fa fa-chevron-up"></i>
</a>
</div>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Contact Form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<!-- Custom scripts for this template -->
<script src="js/freelancer.js"></script>
</body>
</html>