first commit
This commit is contained in:
27
core/templates/pages/data.html
Normal file
27
core/templates/pages/data.html
Normal file
@@ -0,0 +1,27 @@
|
||||
{% extends 'layouts/base.html' %}
|
||||
|
||||
{% block title %} Data {% endblock title %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<div class="container-fluid pt-6 bg-secondary">
|
||||
<h2>Data</h2>
|
||||
<p>Data sources used throughout the project.</p>
|
||||
<ul class="list-group list-group-flush">
|
||||
<li class="list-group-item"><a href="https://github.com/CSSEGISandData/COVID-19">Johns Hopkins</a></li>
|
||||
<li class="list-group-item"><a href="https://github.com/owid/covid-19-data/tree/master/public/data">Our World In Data</a></li>
|
||||
<li class="list-group-item"><a href="https://github.com/nytimes/covid-19-data">New York Times</a></li>
|
||||
</ul>
|
||||
|
||||
{% include "includes/footer.html" %}
|
||||
</div>
|
||||
|
||||
{% endblock content %}
|
||||
|
||||
<!-- Specific JS goes HERE -->
|
||||
{% block javascripts %}
|
||||
<script>
|
||||
$('.nav-item a').removeClass('active');
|
||||
$('.data-item a').addClass('active');
|
||||
</script>
|
||||
{% endblock javascripts %}
|
||||
Reference in New Issue
Block a user