-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathindex.html
96 lines (86 loc) · 3.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Cookie Banner -->
<!-- Start cookieyes banner -->
<script id="cookieyes" type="text/javascript"
src="https://cdn-cookieyes.com/client_data/5ae40288320e48428eecee4b/script.js"></script>
<!-- End cookieyes banner -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kidnappings & Missing Persons in Uganda</title>
<!-- Meta tags SEO -->
<meta name="description"
content="Find missing loved ones in Uganda. Report disappearances. View photos, descriptions. Get support resources. Help bring people home." />
<meta name="keywords" content="missing persons Uganda, kidnapped Ugandans, abducted Ugandans" />
<meta name="author" content="Wes Kambale" />
<!-- Social Media Meta Tags -->
<meta property="og:title" content="Missing persons Uganda" />
<meta property="og:description"
content="Find missing loved ones in Uganda. Report disappearances. View photos, descriptions. Get support resources. Help bring people home." />
<meta property="og:image" content="./src/img/image_of_person.jpg" />
<meta property="og:url" content="https://missingpersonsug.org" />
<meta name="twitter:title" content="Missing Persons Uganda" />
<meta name="twitter:description"
content="Find missing loved ones in Uganda. Report disappearances. View photos, descriptions. Get support resources. Help bring people home." />
<meta name="twitter:image" content="./src/img/image_of_person.jpg" />
<meta name="twitter:card" content="summary_large_image" />
<!-- Social Media Meta Tags End-->
<!--
site.manifest provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="./src/assets/site.webmanifest" />
<!-- Manifest Ends -->
<!-- Favicon -->
<link rel="shortcut icon" href="./src/assets/favicon.ico" type="image/x-icon" />
<link href="./src/assets/apple-touch-icon.png" rel="apple-touch-icon" />
<!-- Schema Markup data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Missing Persons Uganda",
"url": "https://missingpersonsug.com",
"logo": "https://missingpersonsug.com/logo.webp",
"sameAs": [
"",
"",
"",
"",
""
]
}
</script>
<!-- Schema Markup data ends -->
<!-- Link to external CSS -->
<link rel="stylesheet" href="src/css/styles.css">
</head>
<body>
<div class="header">
<h1>Kidnappings & Missing Persons in Uganda</h1>
</div>
<div class="content">
<span class="content__sort-by">Filter by:</span>
<div class="search-sort">
<div class="content__buttons buttons">
<button data-category="All" class="active">All</button>
<button data-category="Arrested">Arrested</button>
<button data-category="Remanded">Remanded</button>
<button data-category="Released">Released</button>
<button data-category="Missing">Missing</button>
<button data-category="Fallen">Fallen</button>
</div>
<input type="text" class="search-input" id="searchInput" placeholder="Search Person's Name...">
</div>
<div id="persons" class="persons"></div>
<div id="loading" class="loading">
<div class="spinner"></div>
</div>
</div>
<script type="text/javascript" src="src/js/scripts.js"></script>
<div w3-include-html="src/partials/footer.html"></div>
<script src="./src/js/include.js"></script>
<script src="./src/js/time.js"></script>
</body>
</html>