-
Notifications
You must be signed in to change notification settings - Fork 0
/
category.php
63 lines (52 loc) · 2.31 KB
/
category.php
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
<?php declare(strict_types=1);
require './config.php';
include './templates/header.php';
?>
<h1 class="text-center fg-white">Resource Finder</h1>
<div class="d-flex p-3">
<div class="mx-auto mt-4">
<div class="tiles-grid tiles-group size-2">
<a href="who.php"
data-role="tile" class="bg-cobalt" data-size="wide">
<span class="mif-home icon"></span>
</a>
<a href="search.php?category_id=78"
data-role="tile" class="bg-amber">
<span class="mif-restaurant icon"></span>
<span class="branding-bar">Meals</span>
</a>
<a href="search.php?category_id=97"
data-role="tile" class="bg-orange">
<span class="mif-help icon"></span>
<span class="branding-bar">Homeless</span>
</a>
<a href="search.php?category_id=84"
data-role="tile" class="bg-blue">
<span class="mif-heartbeat icon"></span>
<span class="branding-bar">Health</span>
</a>
<a href="search.php?category_id=111"
data-role="tile" class="bg-pink">
<span class="mif-suitcase icon"></span>
<span class="branding-bar">Jobs</span>
</a>
<a href="search.php?category_id=116"
data-role="tile" class="bg-red">
<span class="mif-balance-scale icon"></span>
<span class="branding-bar">Legal</span>
</a>
<a href="search.php?category_id=101"
data-role="tile" class="bg-green">
<span class="mif-home icon"></span>
<span class="branding-bar">Housing</span>
</a>
<a href="search.php?category_id=168"
data-role="tile" class="bg-olive" data-size="wide">
<span class="mif-flag icon"></span>
<span class="branding-bar">Veterans</span>
</a>
</div>
</div>
</div>
<?php
include './templates/footer.php';