-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (51 loc) · 2.15 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
---
layout: default
title: "COVID-19 Tracker Philippines"
description: "Open source COVID-19 tracker for the Philippines"
---
<h1>The COVID-19 Tracker Philippines Project</h1>
<p>This serves as a supplementary tracker for the
<a href="https://www.doh.gov.ph/covid19tracker" title="DOH COVID-19 Tracker">COVID-19 Tracker</a>
maintained by the <a href="https://www.doh.gov.ph/" title="Department of Health">Department of Health</a>.
The data set used in this tracker are pulled from DOH's
<a href="https://drive.google.com/drive/folders/1ZPPcVU4M7T-dtRyUceb0pMAd8ickYf8o">data drop</a>.<br>
More details about this project are found in the <a href="{{ 'about' | relative_url }}">About</a>
page and the
<a href="https://github.com/donfiguerres/COVID-19-Tracker-PH">GitHub Project</a> page.
</p>
<h2>The Tracker</h2>
<a href="tracker">Go to the Tracker</a>
<div class="{% if site.scrollappear_enabled %}scrollappear{% endif %}"></div>
{% include chart_image.html filename="DateOnsetCaseRepType" %}
</div>
<h2>Blog Posts</h2>
<ul class="article-list">
{% for post in paginator.posts %}
<li class="article-list-item {% if site.scrollappear_enabled %}scrollappear{% endif %}">
<a href="{{ post.url | relative_url }}" title="{{ post.title }}">
<h5>
{{ post.title }}
{% include svg-icon.html icon="arrow-right" %}
</h5>
</a>
<p>
{% if post.description %}
{{ post.description }}
{% else %}
{{ post.excerpt }}
{% endif %}
</p>
{% include article/info-footer.html post=post %}
</li>
{% endfor %}
{% if paginator.total_pages > 1 %}
<li class="article-pagination {% if site.settings.scrollappear_enabled %}scrollappear{% endif %}">
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="article-pagination-left">{% include svg-icon.html icon="arrow-left" %} Older posts</a>
{% endif %}
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="article-pagination-right">Newer posts {% include svg-icon.html icon="arrow-right" %}</a>
{% endif %}
</li>
{% endif %}
</ul>