This repository has been archived by the owner on Jan 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
to show only available slots and all sites
- Loading branch information
1 parent
57982ef
commit bf8a551
Showing
3 changed files
with
116 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,83 +1,87 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
|
||
<!-- Basic Page Needs | ||
–––––––––––––––––––––––––––––––––––––––––––––––––– --> | ||
<!-- Basic Page Needs --> | ||
<meta charset="utf-8"> | ||
<title>Vaccine Site Finder</title> | ||
<meta name="description" content="NY State vaccination appointments seem to be spread across multiple websites, making it challenging to see where appointments are available. | ||
This website aims to solve that problem by aggregating the views of the many different sites to a single dashboard."> | ||
|
||
<!-- Mobile Specific Metas | ||
–––––––––––––––––––––––––––––––––––––––––––––––––– --> | ||
<!-- Mobile Specific Metas --> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
||
<!-- FONT | ||
–––––––––––––––––––––––––––––––––––––––––––––––––– --> | ||
<!-- Font --> | ||
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css"> | ||
|
||
<!-- CSS | ||
–––––––––––––––––––––––––––––––––––––––––––––––––– --> | ||
<!-- CSS --> | ||
<link rel="stylesheet" href="css/normalize.css"> | ||
<link rel="stylesheet" href="css/skeleton.css"> | ||
<link rel="stylesheet" href="css/site.css"> | ||
|
||
<!-- Favicon https://www.iconfinder.com/icons/5991794/coronavirus_cure_injection_needle_vaccination_vaccine_icon | ||
–––––––––––––––––––––––––––––––––––––––––––––––––– --> | ||
|
||
<!-- Favicon https://www.iconfinder.com/icons/5991794/coronavirus_cure_injection_needle_vaccination_vaccine_icon --> | ||
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png"> | ||
<link rel="manifest" href="images/site.webmanifest"> | ||
<link rel="mask-icon" href="images/safari-pinned-tab.svg" color="#5bbad5"> | ||
<link rel="shortcut icon" href="images/favicon.ico"> | ||
<meta name="msapplication-TileColor" content="#ffc40d"> | ||
<meta name="msapplication-config" content="images/browserconfig.xml"> | ||
<meta name="theme-color" content="#ffffff"> | ||
|
||
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png"> | ||
<link rel="manifest" href="images/site.webmanifest"> | ||
<link rel="mask-icon" href="images/safari-pinned-tab.svg" color="#5bbad5"> | ||
<link rel="shortcut icon" href="images/favicon.ico"> | ||
<meta name="msapplication-TileColor" content="#ffc40d"> | ||
<meta name="msapplication-config" content="images/browserconfig.xml"> | ||
<meta name="theme-color" content="#ffffff"> | ||
</head> | ||
|
||
<body> | ||
|
||
<!-- Primary Page Layout | ||
–––––––––––––––––––––––––––––––––––––––––––––––––– --> | ||
<div class="container"> | ||
<div class="row"> | ||
<h1 class="p-t-5">Vaccine Site Finder</h1> | ||
<p>This site aims to make finding a vaccine appointment a little bit easier. It is currently focused on the Nassau | ||
County and Queens area and is updated periodically.</p> | ||
<p>This site is not affiliated with NY State or any goverment or health agency. For feature requests, comments, or to help please contact us through <a target="_blank" href="https://github.com/99littlebugs/vaccine-site-finder">Github</a>.</p> | ||
<table> | ||
<tr> | ||
<th>Address</th> | ||
<th>Date</th> | ||
<th>Time</th> | ||
<th></th> | ||
</tr> | ||
{{#each events}} | ||
<tr> | ||
<td> | ||
<strong>{{address.name}}</strong><br> | ||
{{address.street}}<br> | ||
{{address.city}}, {{address.state}} {{address.zip}} | ||
</td> | ||
<td>{{date}}</td> | ||
<td>{{time}}</td> | ||
{{#if available}} | ||
<td><a target="_blank" class="button button-primary" href="{{link}}">Book</a></td> | ||
{{else}} | ||
<td><a target="_blank" class="button" href="{{link}}">View</a></td> | ||
{{/if}} | ||
</tr> | ||
{{/each}} | ||
</table> | ||
County, Queens, and Manhattan area and is updated multiple times per hour.</p> | ||
<p>This site is not affiliated with NY State or any goverment or health agency. For feature requests, comments, or | ||
to help please contact us through <a target="_blank" | ||
href="https://github.com/99littlebugs/vaccine-site-finder">Github</a>.</p> | ||
<h3>Sites and times with availability:</h2> | ||
<p>The following events are showing with availability. When you click "Book" you will be brought to the NY | ||
Health site. You may need to scroll down to find the day that you need.</p> | ||
<table class="u-full-width"> | ||
<tr> | ||
<th>Address</th> | ||
<th>Date</th> | ||
<th>Time</th> | ||
<th></th> | ||
</tr> | ||
{{#each events}} | ||
<tr> | ||
<td> | ||
<strong>{{site.address.name}}</strong><br> | ||
{{site.address.street}}<br> | ||
{{site.address.city}}, {{site.address.state}} {{site.address.zip}} | ||
</td> | ||
<td>{{date date}}</td> | ||
<td>{{time}}</td> | ||
<td><a target="_blank" class="u-pull-right button button-primary" href="{{site.link}}">Book</a></td> | ||
</tr> | ||
{{/each}} | ||
</table> | ||
<h3>Sites:</h2> | ||
<p>These are the sites that we are currently tracking.</p> | ||
<table class="u-full-width"> | ||
<tr> | ||
<th>Name</th> | ||
<th>Address</th> | ||
<th></th> | ||
</tr> | ||
{{#each sites}} | ||
<tr> | ||
<td>{{name}}</td> | ||
<td> | ||
<strong>{{address.name}}</strong><br> | ||
{{address.street}}<br> | ||
{{address.city}}, {{address.state}} {{address.zip}} | ||
</td> | ||
<td><a target="_blank" class="u-pull-right button" href="{{site.link}}">View</a></td> | ||
</tr> | ||
{{/each}} | ||
</table> | ||
</div> | ||
</div> | ||
|
||
<!-- End Document | ||
–––––––––––––––––––––––––––––––––––––––––––––––––– --> | ||
</body> | ||
|
||
</html> |