js fix
This commit is contained in:
parent
334e398852
commit
55aa9bf687
5 changed files with 14 additions and 26 deletions
20
404.html
20
404.html
|
@ -29,6 +29,7 @@
|
||||||
<link rel="icon" href="assets/afb/favicon.png" type="image/png">
|
<link rel="icon" href="assets/afb/favicon.png" type="image/png">
|
||||||
<link href="/assets/css/mrl.css" rel="stylesheet">
|
<link href="/assets/css/mrl.css" rel="stylesheet">
|
||||||
<link href="/assets/fontawesome/css/all.css" rel="stylesheet">
|
<link href="/assets/fontawesome/css/all.css" rel="stylesheet">
|
||||||
|
<script type="text/javascript" src="/assets/js/mrl.js"></script>
|
||||||
<!--- site-->
|
<!--- site-->
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" >
|
<meta name="viewport" content="width=device-width, initial-scale=1" >
|
||||||
</head>
|
</head>
|
||||||
|
@ -83,25 +84,14 @@
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<footer>
|
<footer>
|
||||||
<div class="footer-links">
|
<div class="footer-links">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://lermer.nl">©LERMER.NL</a></Li>
|
<li><a href="https://lermer.nl">©LERMER.NL</a></Li>
|
||||||
<li><a href="https://git.lermer.nl/Mathijs/lermer.nl">GIT</a></Li>
|
<li><a href="https://git.lermer.nl/Mathijs/lermer.nl"> <i class="fas fa-code-merge"></i></a></Li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
<script>
|
|
||||||
function hamburgermenuknopje() {
|
|
||||||
var x = document.getElementById('main_menu_01');
|
|
||||||
if (x.style.display === "block") {
|
|
||||||
x.style.display = "none";
|
|
||||||
} else {
|
|
||||||
x.style.display = "block";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
</html>
|
</html>
|
8
assets/js/mrl.js
Normal file
8
assets/js/mrl.js
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
function hamburgermenuknopje() {
|
||||||
|
var x = document.getElementById('main_menu_01');
|
||||||
|
if (x.style.display === "block") {
|
||||||
|
x.style.display = "none";
|
||||||
|
} else {
|
||||||
|
x.style.display = "block";
|
||||||
|
}
|
||||||
|
}
|
12
index.html
12
index.html
|
@ -28,6 +28,7 @@
|
||||||
<link rel="icon" href="assets/afb/favicon.png" type="image/png">
|
<link rel="icon" href="assets/afb/favicon.png" type="image/png">
|
||||||
<link href="/assets/css/mrl.css" rel="stylesheet">
|
<link href="/assets/css/mrl.css" rel="stylesheet">
|
||||||
<link href="/assets/fontawesome/css/all.css" rel="stylesheet">
|
<link href="/assets/fontawesome/css/all.css" rel="stylesheet">
|
||||||
|
<script type="text/javascript" src="/assets/js/mrl.js"></script>
|
||||||
<!--- site-->
|
<!--- site-->
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" >
|
<meta name="viewport" content="width=device-width, initial-scale=1" >
|
||||||
</head>
|
</head>
|
||||||
|
@ -98,15 +99,4 @@
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
<script>
|
|
||||||
function hamburgermenuknopje() {
|
|
||||||
var x = document.getElementById('main_menu_01');
|
|
||||||
if (x.style.display === "block") {
|
|
||||||
x.style.display = "none";
|
|
||||||
} else {
|
|
||||||
x.style.display = "block";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
</html>
|
</html>
|
0
robots.txt
Normal file → Executable file
0
robots.txt
Normal file → Executable file
Loading…
Reference in a new issue