-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjudaism.html
144 lines (128 loc) · 5.59 KB
/
judaism.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles/styles.css">
<link rel="icon" href="favicon.ico">
<title>Willow - Judaism</title>
</head>
<body>
<div id="side-menu" class="sidebar">
<a onclick="closeSlideMenu()">×</a>
<a href="index.html">Home</a>
<span id="drop-1" onmouseover="dropdown('general-dropdown')" onmouseout="dropup('general-dropdown')">
<a href="general.html">General</a>
<div id="general-dropdown" onmouseover="showDrop('drop-btn-1')" onmouseout="hideDrop('drop-btn-1')">
<a href="databases.html">Databases</a>
<a href="support.html">Online Support Groups</a>
<a href="personal.html">Personal Coping</a>
</div>
</span>
<a href="map.html">Resources Near You</a>
<span id="drop-2" onmouseover="dropdown('religion-dropdown')" onmouseout="dropup('religion-dropdown')">
<a href="religion.html">Spiritual & Religious</a>
<div id="religion-dropdown" onmouseover="showDrop('drop-btn-2')" onmouseout="hideDrop('drop-btn-2')">
<a href="christianity.html">Christianity</a>
<a href="judaism.html">Judaism</a>
<a href="islam.html">Islam</a>
</div>
</span>
<a href="gathering.html">Gathering</a>
<a href="planning.html">Planning Ahead</a>
<a href="kids.html">Kids & Young Adults</a>
<a href="voices.html">Voices</a>
<a href="about.php">About</a>
</div>
<div id="navbar">
<span id="left-navbar">
<span id="open-sidebar">
<a onclick="openSlideMenu()">
<svg width="20" height="20">
<path d="M0,5 20,5" stroke="#444" stroke-weight="3"/>
<path d="M0,10 20,10" stroke="#444" stroke-weight="3"/>
<path d="M0,15 20,15" stroke="#444" stroke-weight="3"/>
</svg>
</a>
</span>
<span id="willow-logo">
<a href="index.html">
<img src="images/willow.jpg" alt="">
</a>
</span>
<h3 id="willow-top-title">willow</h3>
</span>
<span id="right-navbar">
<a id="header-share-btn" href="https://docs.google.com/forms/d/e/1FAIpQLScyr3UbyTQbbWcXZtbDlFMhCTRMxw6XzWECs20eh39spCDFRA/viewform" target="_blank"><button type="button" name="button">Share a resource</button></a>
</span>
</div>
<div class="background">
</div>
<div class="container">
<div class="sub-header">
<div id="main-header-box">
<span class="sub-header-h1">
<img id="leaf-left" src="images/leaf_left.png" alt="">
<h1>Judaism</h1>
<img id="leaf-right" src="images/leaf_right.png" alt="">
</span>
</div>
</div>
<div class="page-links">
<div class="sub-link-box">
<div class="link">
<a href="https://www.jewish-funerals.org/coronavirus-and-jewish-death-practices/" target="_blank">Kavod v'Nichum and Gamliel Institute</a>
<p>"A central forum for resources & news in relation to Jewish death-related practices & the ongoing pandemic of the COVID-19 virus."</p>
</div>
<div class="link">
<a href="https://www.ujafedny.org/coronavirus/resources/" target="_blank">UJA Federation</a>
<p>"UJA’s network of nonprofits, synagogues, & day schools is continuing to mobilize & adapt quickly to the evolving needs of the COVID-19 global pandemic." They have compiled resources to help the community and will continue to update the page.</p>
</div>
<div class="link">
<a href="https://www.shiva.com/covid-19-coronavirus/" target="_blank">Shiva.com</a>
<p>Information, guidance, & practices on grieving in the Jewish community during COVID-19. Shiva.com also offers best practices for safely sitting shiva.</p>
</div>
</div>
<script>
// opening and closing side menu
function openSlideMenu(){
document.getElementById('side-menu').style.width = '250px';
}
function closeSlideMenu(){
document.getElementById('side-menu').style.width = '0';
document.getElementById('general-dropdown').style.height = "0";
document.getElementById('drop-btn-1').innerHTML = "\u002B";
// document.getElementById('religion-dropdown').style.height = "0";
}
// showing map descriptions
function showDesc(id){
document.getElementById(id).style.height = "100px";
}
function hideDesc(id){
document.getElementById(id).style.height = "0px";
}
function dropdown(id){
document.getElementById(id).style.height = "80px";
}
function dropup(id){
document.getElementById(id).style.height = "0";
}
</script>
</div>
</div>
<footer class="footer">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="general.html">General</a></li>
<li><a href="map.html">Resources Near You</a></li>
<li><a href="religion.html">Spiritual & Religious</a></li>
<li><a href="gathering.html">Gathering</a></li>
<li><a href="planning.html">Planning Ahead</a></li>
<li><a href="kids.html">Kids & Young Adults</a></li>
<li><a href="voices.html">Voices</a></li>
<li><a href="about.php">About</a></li>
</ul>
</footer>
</body>
</html>