Created
April 10, 2019 21:16
-
-
Save andrawaag/04a3c17dcf0dd8e37561e6f1c10a1474 to your computer and use it in GitHub Desktop.
botanical-garden.html
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
{% extends "base.html" %} | |
{% block scripts %} | |
{{super()}} | |
<script type="text/javascript"> | |
speciesSparql = ` | |
` | |
$(document).ready(function() { | |
sparqlToDataTable(speciesSparql, "#species"); | |
}); | |
</script> | |
{% endblock %} | |
{% block page_content %} | |
<h1 id="h1">Botanical Garden</h1> | |
<div id="intro"></div> | |
<h2 id="Species">Species</h3> | |
<table class="table table-hover" id="prolific-authors"></table> | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment