gitar

footer.djhtml

1
		<footer class="page-footer blue">
2
			<div class="container">
3
				<div class="row">
4
					<div class="col l6 s12">
5
						<h5 class="white-text">Vngngdn</h5>
6
						<p class="grey-text text-lighten-4">A website about Vngngdn, a {{ age }} year old Belgian programmer. A <a href="https://gnu.org/philosophy/free-sw.html" target="_blank">free/libre software</a> enthusiast and undergraduate informatics student @ <a href="https://www.uhasselt.be/" target="_blank">UHasselt</a>.</p>
7
					</div>
8
					<div class="col l4 offset-l2 s12">
9
						<h5 class="white-text">Links</h5>
10
						<ul>
11
							<li><a class="grey-text text-lighten-3" href="mailto:maarten.vangeneugden@student.uhasselt.be">Contact</a></li>
12
						</ul>
13
					</div>
14
				</div>
15
			</div>
16
			<div class="footer-copyright">
17
				<div class="container">
18
					© 2016 Vngngdn (Maarten Vangeneugden)
19
					<a class="grey-text text-lighten-4 right" href="https://creativecommons.org/licenses/by/4.0/deed.nl" target="_blank">CC-BY 4.0</a>
20
				</div>
21
			</div>
22
		</footer>
23
	</body>
24
	<!-- Remember to always put JavaScript on the bottom to reduce load time. TEMP: Perhaps it's better to put this in a seperate template, as a footer part.-->
25
	<script type="text/javascript" src="/static/website/materialize/js/jquery.js"></script> <!-- Why jQuery? Because Materialize doesn't work without. So here it is. I might take another GUI framework if I find one worth switching. -->
26
	<script type="text/javascript" src="/static/website/materialize/js/materialize.js"></script> <!-- HAHAHA, TOOK ME 4 HOURS STRAIGHT TO FIGURE OUT. REMEMBER FOREVER: <script /> IS IMPOSSIBLE, IT MUST BE <script></script>. Whoever's reading this, don't tell me HTML5 is a programming language or I will end you.-->
27
	<script>
28
		// This snippet is necessary; it makes sure the modals will be made visible.
29
		$(document).ready(function(){
30
			$('.modal-trigger').leanModal();
31
			$('.parallax').parallax();
32
		});
33
	</script>
34
</html>
35