-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.html
91 lines (80 loc) · 3.48 KB
/
events.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- https://speakerdeck.com/csswizardry/get-your-head-straight?slide=39 -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Italian Moto History</title>
<!-- Load async scripts first. -->
<script src="assets/js/main.js" data-cfasync="false" async></script>
<script src="assets/js/calendar.js" data-cfasync="false" async></script>
<!-- Load fonts -->
<link rel="preload" href="assets/fonts/Abril-Fatface/AbrilFatface-Regular.ttf" as="font" type="font/ttf" crossorigin>
<link rel="preload" href="assets/fonts/Merriweather/Merriweather-Regular.ttf" as="font" type="font/ttf" crossorigin>
<link rel="preload" href="assets/fonts/Merriweather/Merriweather-Italic.ttf" as="font" type="font/ttf" crossorigin>
<link rel="preload" href="assets/fonts/Merriweather/Merriweather-Bold.ttf" as="font" type="font/ttf" crossorigin>
<link rel="stylesheet" href="assets/css/fonts.css">
<!-- Load synchronous resources. -->
<link rel="stylesheet" href="assets/css/layout.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/style-calander.css">
<link rel="icon" href="favicon.ico">
<meta name="author" content="Brennan Goewert">
<meta name="description" content="The history Italian motorcycles and scooters">
<meta name="robots" content="noindex, nofollow">
<meta name="keywords" content="Ducati, Moto Guzzi, Aprilia, Vespa, Benelli, Ducati history, history of Ducati, Italian motorcycles, motorcycles from Italy, Italian motorcycle history">
</head>
<body>
<header>
<div class="italy-flag"></div>
<nav>
<div id="menu-left">
<a href="manufacturers.html">Manufacturers</a>
<a href="events.html">Events</a>
</div>
<div>
<a href="index.html" id="site-title">Italian Moto History</a>
</div>
<div id="menu-right">
<a href="museums.html">Museums</a>
<a href="about.html">About</a>
</div>
</nav>
</header>
<main class="wide">
<header>
<h1>Events</h1>
</header>
<article>
<table>
<thead>
<tr>
<th>Sunday</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
</tr>
</thead>
<tbody></tbody>
</table>
</article>
</main>
<footer>
<div>
<nav>
<a href="privacy.html">Privacy</a>
<a href="legal.html">Legal</a>
<a href="contact.html">Contact</a>
</nav>
<p><small><em>This is an educational project. <a href="https://github.com/bgoewert/Italian-Moto-History" target="_blank">View the project repository.</a><br>Use of manufacturer logos is solely for educational purposes and does not imply endorsement.</em></small></p>
<nav>
<span>Copyright © <span id="copyright-year">2023</span> <a href="https://bgoewert.com" target="_blank">Brennan Goewert</a></span>
</nav>
</div>
<div class="italy-flag"></div>
</footer>
</body>
</html>