-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add blurb and update title of home page
- Loading branch information
1 parent
381e128
commit 5463193
Showing
1 changed file
with
6 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,12 @@ | |
{% from 'bootstrap5/table.html' import render_table %} | ||
{% block title %}Home{% endblock %} | ||
{% block content %} | ||
<h1>Welcome to the DataCite Data Files Service</h1> | ||
<div class="my-4">Blurb here...</div> | ||
<h3>Available Data Files</h3> | ||
<h1>DataCite Data Files Service</h1> | ||
<div class="my-4"> | ||
This is a pilot portal for DataCite’s public data file. Read more about the data file on the <a href="https://support.datacite.org/docs/datacite-public-data-file">DataCite support site</a>. | ||
For questions or feedback, contact <a href="[email protected]">[email protected]</a>. | ||
</div> | ||
<h3>Available Public Data Files</h3> | ||
{{ render_table( | ||
datafiles, | ||
titles = [('name','Name'), ('description','Description'), ('size', 'Size'), ('doi', 'DOI'), ('access_button', 'Access')], | ||
|