-
Notifications
You must be signed in to change notification settings - Fork 0
/
_common.njk
62 lines (52 loc) · 2.06 KB
/
_common.njk
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
{# A common template to re-use accross all pages of the application #}
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>BeCode / JavaScript for the Web Exercise</title>
<link rel="icon" href="./_shared/img/becode-seal.png" />
<!-- Font Awesome -->
<link rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous">
<link rel="stylesheet" href="./style.scss">
</head>
<body>
<div>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container">
<a class="navbar-brand" href="./index.njk">Innovation.io</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon text-white"><i class="fas fa-bars"></i></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="./index.njk">Home
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./team.njk">Team</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.njk">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
{% block content %}
{% endblock %}
</div>
<footer class="py-4 bg-dark text-white-50">
<div class="container text-center">
<small>Copyright © 2019 - Innovation.io</small>
</div>
</footer>
<script src="./script.js"></script>
</body>
</html>