Skip to content

Instantly share code, notes, and snippets.

@andrawaag
Created April 10, 2019 21:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrawaag/04a3c17dcf0dd8e37561e6f1c10a1474 to your computer and use it in GitHub Desktop.
Save andrawaag/04a3c17dcf0dd8e37561e6f1c10a1474 to your computer and use it in GitHub Desktop.
botanical-garden.html
{% 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