-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
106 lines (97 loc) · 4.5 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
97
98
99
100
101
102
103
104
105
106
---
layout: default
---
<div class="splash-container">
<div class="wrapper clearfix">
<h1>
Your favorite Michigan shop or restaurant might close forever. Help save it.
</h1>
<span>Gift cards help "flatten the curve" of lost income from COVID-19.</span>
</div>
</div>
<div class="post-splash-container">
<div class="wrapper clearfix">
<h2>
Thank you for helping keep your favorite Michigan restaurants and shops afloat during COVID-19.
There are now two ways you can help:
</h2>
<div class="post-splash-options">
<div class="post-splash-options-option">
<h3>Option 1: Support a Small Business</h3>
<ol>
<li>Find your favorite <span class="post-splash-option-emphasis">Michigan business</span> below.</li>
<li><span class="post-splash-option-emphasis-2">Buy gift cards for yourself, family, friends, neighbors, co-workers, etc.</span></li>
<li><span class="post-splash-option-emphasis-3">All proceeds go directly to the small business to help it stay afloat!</span></li>
</ol>
</div>
<div class="post-splash-options-option">
<img class="post-splace-options-optino-logo" src="img/michigan-medicine-logo.png">
<h3>Option 2: Support a Small Business AND Help Feed Frontline Workers</h3>
<ol>
<li>Find your favorite <span class="post-splash-option-emphasis">Ann Arbor restaurant</span> below.</li>
<li><span class="post-splash-option-emphasis-2">Donate gift cards to Michigan Medicine. When purchasing a gift card, please indicate</span>:
<ul>
<li>Recipient name = <span class="post-splash-option-emphasis-2">Michigan Medicine</span></li>
<li>Recipient email address = <span class="post-splash-option-emphasis-2">[email protected]</span></li>
</ul>
</li>
<li><span class="post-splash-option-emphasis-3">All proceeds go directly to the Ann Arbor restaurant to help it stay afloat!</span></li>
<li><span class="post-splash-option-emphasis-3">Gift cards will be used to buy meals for the frontline hospital workers working hard to keep us healthy and safe!</span></li>
</ol>
</div>
</div>
{% if site.meetup or site.google_groups %}
Join us on:
{% endif %}
{% if site.meetup %}
<a href="http://www.meetup.com/{{ site.meetup }}/"><img src="/img/meetup-logo-white.png" alt="Meetup.com" /></a>
{% endif %}
{% if site.google_groups %}
<a href="https://groups.google.com/forum/#!forum/{{ site.google_groups }}"><img class="" src="/img/google-groups-logo-white.png" alt="Google Groups" /></a>
{% endif %}
</div>
</div>
<div class="main wrapper clearfix">
<section>
<h1>Michigan Businesses</h1>
<div id="filters">
<span id="search-category-filter" class="filter-container">
Category:
<select id="search-category" class="filter" name="category">
<option></option>
</select>
</span>
<span id="search-town-filter" class="filter-container">
Town:
<select id="search-town" class="filter" name="town">
<option></option>
</select>
</span>
</div>
<ul id="businesses" class="home">
{% assign sorted_businesses = site.data.businesses | sort: 'name' %}
{% for business in sorted_businesses %}
<li>
<a href="{{ business.url }}" target="_blank">
<address>
{% assign towns = business.town | split: '|' %}
<span class="town" title="{{ towns | join: ', ' }}">{{ towns | join: ', ' }}</span>
<span class="category">{{ business.category }}</span>
</address>
<h3>{{ business.name }}</h3>
</a>
</li>
{% endfor %}
</section>
<section id="homepage-about">
<h1>Our duty as loyal customers</h1>
<p>
Our small businesses need us more than ever. Even though we can’t leave home, we can still support local restaurants by buying gift cards. It’s basically a mini-loan, so buy one now and make a plan to use it later.
</p>
<h2>3 weeks can kill a business</h2>
<p>
Restaurants have tons of fixed costs: rent, labor, loan repayments, insurance, supplies, repairs – the list goes on. Even successful restaurants have razor thin margins of 3-5%, and a third have struggled to pay employees at least once. For some, the loss of business due to COVID-19 could tip the balance into bankruptcy.
</p>
</section>
</div>
</div>