-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
211 lines (198 loc) · 6.74 KB
/
index.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Discover | fáilte</title>
<meta
name="description"
content="Discover Ireland's hidden gems with Fáilte. Our interactive map features over 600 attractions to explore, from historic sites to scenic trails. Contact each attraction with ease by phone or website, or get directions to navigate to your next adventure. Search by attraction type to find the perfect experience for you. Start your journey today!"
/>
<!-- META FOR FACEBOOK/LINKEDIN -->
<meta property="og:title" content="fáilte" />
<meta property="og:description" content="Discover Ireland's hidden gems" />
<meta property="og:url" content="https://failte.app" />
<meta
property="og:image"
content="https://failte.app/assets/readme/img/cover-img.jpg"
/>
<!-- META FOR TWITTER -->
<meta name="twitter:title" content="fáilte" />
<meta name="twitter:description" content="Discover Ireland's hidden gems" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:image"
content="https://failte.app/assets/readme/img/cover-img.jpg"
/>
<!-- ADD STYLESHEET -->
<link rel="stylesheet" href="assets/css/styles.css" />
<!-- ADD FONTAWESOME -->
<script
src="https://kit.fontawesome.com/ee1bd5fe1b.js"
crossorigin="anonymous"
></script>
<!-- ADD GOOGLE FONTS -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Lilita+One&display=swap"
rel="stylesheet"
/>
<!-- ADD FAVICON -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/img/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/img/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/img/faviconfavicon-16x16.png"
/>
<link rel="manifest" href="assets/img/favicon/site.webmanifest" />
</head>
<body>
<!-- MODAL TO SHOW ON FIRST VISIT -->
<dialog class="first-visit-modal">
<div id="dialog-flex-container">
<h3 id="first-visit-modal-header">fáilte!</h3>
<hr class="decorative-line-break" />
<p id="first-visit-modal-paragraph">
Search over 600 attractions in Ireland including museums, castles,
monuments, art galleries and more! Click below to Get Started or find
out more.
</p>
<div id="modal-cta-container">
<a
id="get-started-modal"
class="primary-cta"
href="#"
aria-label="Click to close dialog window"
>Get started</a
>
<a
class="primary-cta secondary-cta"
href="about.html"
aria-label="Click to go to About page"
>Tell me more</a
>
</div>
<div class="license-disclaimer">
Contains Irish Public Sector Data licensed under a CC BY 4.0 license.
<strong>fáilte</strong> is not affiliated with Fáilte Ireland.
</div>
</div>
</dialog>
<div id="container">
<!-- HEADER -->
<header>
<div id="container-header">
<div id="nav-logo">
<a href="index.html">fáilte</a>
</div>
<nav>
<ul>
<li>
<a
href="index.html"
class="active-page"
aria-label="Go to Map page"
>Map</a
>
</li>
<li>
<a href="play.html" aria-label="Go to Geo Game page">Play</a>
</li>
<li>
<a href="about.html" aria-label="Go to About page">About</a>
</li>
<li>
<a href="contact.html" aria-label="Go to Contact page"
>Contact</a
>
</li>
</ul>
</nav>
</div>
</header>
<!-- MAIN CONTENT -->
<main class="no-overflow">
<div id="container-content">
<!-- CONTAINER FOR SEARCH BAR + RESULTS -->
<div id="search-container">
<div id="search-container-head">
<div id="drawer-chevron-container">
<img
id="drawer-chevron"
src="assets/img/icons/chevron-circle.svg"
alt="Chevron"
aria-label="Click to open/close drawer"
/>
</div>
<!-- SEARCH BAR -->
<div id="search-bar-container">
<label for="search">Search</label>
<input
type="search"
id="search"
placeholder="e.g. 'Forest', 'Castle', 'Cafe', 'Museum'"
/>
<span id="search-error-message" class="hidden"
>Oops! Try search by attraction name, type or location.</span
>
</div>
</div>
<div id="search-container-results"></div>
</div>
<!-- CONTAINER FOR MAP -->
<div id="map"></div>
</div>
</main>
<!-- FOOTER -->
<footer>
<div id="footer-links">
<a
href="https://github.com/CarlMurray/failte-pp2"
target="_blank"
title="See this project's Repo on GitHub"
aria-label="See this project's Repo on GitHub"
><img
class="footer-icon"
src="assets/img/footer/footer-github-icon.svg"
alt="GitHub Logo"
/></a>
<a
href="https://carlmurray.design"
target="_blank"
title="View my portfolio of projects"
aria-label="View my portfolio of projects"
><img
class="footer-icon"
src="assets/img/footer/footer-portfolio-icon.svg"
alt="Personal Portfolio Logo"
/></a>
<a
href="https://www.linkedin.com/in/carljmurray/"
target="_blank"
title="Connect with me on LinkedIn"
aria-label="Connect with me on LinkedIn"
><img
class="footer-icon"
src="assets/img/footer/footer-linkedin-icon.svg"
alt="LinkedIn Logo"
/></a>
</div>
</footer>
</div>
<!-- add JS app link -->
<script src="assets/js/app.js"></script>
</body>
</html>