-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.njk
More file actions
88 lines (60 loc) · 2.18 KB
/
Copy pathcontact.njk
File metadata and controls
88 lines (60 loc) · 2.18 KB
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
<!DOCTYPE html>
<html lang="en" data-theme="light">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Whether Weather App</title>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/images/sun_logo.png"
/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css" />
<script>
document.addEventListener('DOMContentLoaded', () =>
{
// NAVBURGER
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Add a click event on each of them
$navbarBurgers.forEach(el =>
{
el.addEventListener('click', () =>
{
// Get the target from the "data-target" attribute
const target = el.dataset.target;
const $target = document.getElementById(target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
});
</script>
</head>
<body>
{% include "navbar.njk" %}
<main class="columns is-multiline box has-background-white">
<div class="column is-12 has-text-centered has-text-black">
<p class="is-size-1">Whether Weather - Contact Us!</p>
<div class="column is-12 has-text-left has-text-black">
<article class= "message">
<div class= "message-header">
<p>Get in Touch!</p>
<button class="delete" aria-label="delete"></button>
</div>
<div class="message-body">
<div class="column is-12">
All data for weather and cities is sourced by the
Open Meteo API and can be found here.
For other inquiries please contact the Whether Weather Office by:
<div class="list-item-content">
<div class="list-item-title">Whether Weather Main Office</div>
<div class="list-item-description">SETU HDIP 25' Computer Science Division</div>
<p> <strong>Email: w20114761@setu.ie</strong></p>
<p> <strong>Telephone: 12345678</strong></p>
</div>
</div>
</div>
</article>
</body>
{% include "footer.njk" %}