-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.html
109 lines (82 loc) · 3.08 KB
/
layout.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="https://static.igem.wiki/teams/4477/wiki/images/asfavicon.svg"/>
<link rel="license" href="https://creativecommons.org/licenses/by/4.0/"/>
<!-- fontawesome CSS -->
<link href="{{ url_for('static', filename = 'fontawesome/all.min.css') }}" rel="stylesheet">
<!-- PDF Viewer -->
<script src="{{ url_for('static', filename = 'pdfobject.min.js') }}"></script>
<!-- Bootstrap CSS -->
<link href="{{ url_for('static', filename = 'bootstrap.min.css') }}" rel="stylesheet">
<!-- Custom CSS -->
<link href="{{ url_for('static', filename = 'style.css') }}" rel="stylesheet">
<!-- Hover.css stylesheet -->
<link href="{{ url_for('static', filename = 'css/hover.css') }}" rel="stylesheet">
<!-- aos css -->
<link rel="stylesheet" href="{{ url_for('static', filename = 'aos/aos.css') }}">
<!-- aos JavaScript -->
<script src="{{ url_for('static', filename = 'aos/aos.js') }}"></script>
<!-- Lottie JS -->
<script src="{{ url_for('static', filename = 'lottie/lottie.js') }}"></script>
<!-- OWLCarousel -->
<link rel="stylesheet" href="{{ url_for('static', filename = 'owlcarousel/owl.carousel.min.css')}}">
<link rel="stylesheet" href="{{ url_for('static', filename = 'owlcarousel/owl.theme.default.min.css')}}">
{% block extraStyles %}
{% endblock %}
<title>{% block title %}{% endblock %} | Virginia - iGEM 2022</title>
</head>
<body>
<!-- Initialize Data AOS -->
<script>
AOS.init({
once: true
});
</script>
<!-- Navigation -->
{% include 'menu.html' %}
<!-- Page Content -->
{% block page_content %}{% endblock %}
<!-- Footer: MUST mention license AND have a link to team wiki's repository on gitlab.igem.org -->
{% include 'footer.html' %}
<!-- JQuery -->
<script src="{{ url_for('static', filename = 'jquery-3.6.0.min.js') }}"></script>
<!-- Bootstrap Bundle with Popper -->
<script src="{{ url_for('static', filename = 'bootstrap.bundle.min.js') }}"></script>
<!-- OWL CAROUSEL -->
<script src="{{ url_for('static', filename = 'owlcarousel/owl.carousel.min.js')}}"></script>
<script>
$(document).ready(function() {
$("body").tooltip({ selector: '[data-bs-toggle=tooltip]' });
});
$(document).ready(function(){
$(window).scroll(function(){
$('nav').toggleClass('scrolled', $(this).scrollTop() > 50);
});
})
</script>
<!-- CAROUSEL -->
<script>
$('.owl-carousel').owlCarousel({
loop:true,
margin:10,
nav:true,
responsive:{
0:{
items:1
},
600:{
items:2
},
1000:{
items:3
}
}
})
</script>
</body>
<script src="{{ url_for('static', filename = 'components/scrollspyforindex.js') }}"></script>
</html>