-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (69 loc) · 1.93 KB
/
index.html
File metadata and controls
82 lines (69 loc) · 1.93 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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="style.css" />
<title>La Preghiera</title>
</head>
<body>
<div class="center onlyCenteredText">
<h1>La Preghiera</h1>
<div id="santo">
<script src="https://widgets.chiesacattolica.it/widget-almanacco-v2/widget.php?mods=401537&font=0"></script>
</div>
<div>
<h2>Giornaliera</h2>
<p>
<a href="preghiere/giornaliere/preghiere-del-mattino.html"
>Preghiere del mattino</a
>
</p>
<p>
<a href="preghiere/giornaliere/preghiere-della-sera.html"
>Preghiere della sera</a
>
</p>
</div>
<br />
<div>
<h2>Ai Santi</h2>
<p>
<a href="preghiere/santemidio/preghiera.html"
>Preghiera a Sant'Emidio</a
>
</p>
<p>
<a href="preghiere/santemidio/triduo.html"
>Triduo in onodre di Sant'Emidio</a
>
</p>
<p>
<a href="preghiere/sanmichelearcangelo/preghiera.html"
>Preghiera a San Michele Arcanglo</a
>
</p>
</div>
<br />
<div>
<h2>Alla SS. Vergine</h2>
<p>
<a href="preghiere/ssvergine/rosario.html">Santo Rosario</a>
</p>
</div>
<br />
<script>
document.addEventListener("DOMContentLoaded", function (event) {
var divs = document.getElementsByTagName("div"),
forEach = Array.prototype.forEach,
regex = /^(head|nav).*$/;
forEach.call(divs, function (d) {
if (d.id !== undefined && regex.test(d.id)) {
d.parentNode.removeChild(d);
}
});
});
</script>
</div>
</body>
</html>