-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
103 lines (69 loc) · 2.96 KB
/
404.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
<!DOCTYPE html>
<html lang="fr-FR">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<title>404 Page not found | Reticulum</title>
<link rel="stylesheet" href="/css/style.css" />
<link rel="shortcut icon" href="img/reticulum.ico">
</head>
404 NOT FOUND
<footer>
CC-BY Master DIIS, Master DNHD, Florian Harmand & Arthur Perret 2020 • <a href="mailto:florian.harman@gmail.com,arthur.perret@u-bordeaux-montaigne.fr">Contact</a>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script>
var size=20;
$(document).ready(function() {
$("#normal").hide();
$("#expand").hide();
$(".collapse.show").each(function(){
$(this).prev(".card-header").find(".fa").addClass("fa-sort-up").removeClass("fa-sort-down");
});
$(".collapse").on('show.bs.collapse', function(){
$(this).prev(".card-header").find(".fa").removeClass("fa-sort-down").addClass("fa-sort-up");
}).on('hide.bs.collapse', function(){
$(this).prev(".card-header").find(".fa").removeClass("fa-sort-up").addClass("fa-sort-down");
});
var docHeight = $(document).height(),windowHeight = $(window).height(),scrollPercent;
$(window).scroll(function() {
scrollPercent = $(window).scrollTop() / (docHeight - windowHeight) * 100;
$('.scroll-progress').width(scrollPercent + '%');
});
$(function(){
$("#btn-search").click(function(){
var search = $("#search").val();
search = search.replace(/ /g, "-");
window.location.href = "https:\/\/revue.reticulum.info\/" + search + "";
});
});
$( "#blackmode" ).click(function() {
$('body').css({"background-color":"black","color":"white"});
$('.menu').css({"color":"black"});
$('.arrow').css({"fill":"white"});
$('label').css({"color":"black"});
$("#normal").show();
$("#blackmode").hide();
});
$( "#normal" ).click(function() {
$('body').css({"background-color":"white","color":"black"});
$('.arrow').css({"fill":"black"});
$("#blackmode").show();
$("#normal").hide();
});
$("#grow").click(function() {
$("p").css("font-size", size + 1 + "px");
size++;
});
$("#reduce").click(function() {
$("p").css("font-size", size - 1 + "px");
size--;
});
$('#open').click(function() {
$('#expand').animate({width:'toggle'},250);
});
});
</script>