-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html.try
54 lines (51 loc) · 2.18 KB
/
index.html.try
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
{% assign settings = site.data.settings %}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ settings.title.en }}</title>
<!-- Link to your CSS file if you have one -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<h1>{{ settings.title.en }}</h1>
<!-- Navigation links with dropdown menu -->
<nav>
<ul>
<li>
<a href="/" lang="en" xml:lang="en">Home</a>
<a href="/" lang="it" xml:lang="it">Casa</a>
</li>
<li><a href="/events" lang="en">Events</a><a href="/events" lang="it">Eventi</a></li>
<li class="dropdown">
<a href="#" class="dropbtn" lang="en">Chapters</a><a href="#" class="dropbtn" lang="it">Capitoli</a>
<div class="dropdown-content">
<a href="chapter1.html" lang="en">Chapter 1</a><a href="chapter1.html" lang="it">Capitolo 1</a>
<a href="chapter2.html" lang="en">Chapter 2</a><a href="chapter2.html" lang="it">Capitolo 2</a>
<a href="chapter3.html" lang="en">Chapter 3</a><a href="chapter3.html" lang="it">Capitolo 3</a>
</div>
</li>
<li><a href="/gallery" lang="en">Gallery</a><a href="/gallery" lang="it">Galleria</a></li>
<li><a href="/contact" lang="en">Contact</a><a href="/contact" lang="it">Contatto</a></li>
</ul>
</nav>
</header>
<main>
<!-- Content goes here -->
<h2 lang="en">Welcome to {{ settings.title.en }}</h2>
<h2 lang="it">Benvenuti nel {{ settings.title.it }}</h2>
<p lang="en">We are a motorcycle club passionate about riding and camaraderie.</p>
<p lang="it">Siamo un club motociclistico appassionato di guida e cameratismo.</p>
<p lang="en">Join us on epic journeys, thrilling events, and lifelong friendships.</p>
<p lang="it">Unisciti a noi in viaggi epici, eventi emozionanti e amicizie durature.</p>
</main>
<footer>
<!-- Footer content goes here -->
<p>© <span id="currentYear"></span> {{ settings.title.en }}</p>
</footer>
<!-- Optionally, include JavaScript files if needed -->
<script src="assets/js/script.js"></script>
</body>
</html>