diff options
Diffstat (limited to 'python/fatcat_web/templates/home.html')
-rw-r--r-- | python/fatcat_web/templates/home.html | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/python/fatcat_web/templates/home.html b/python/fatcat_web/templates/home.html new file mode 100644 index 00000000..4d3b44a1 --- /dev/null +++ b/python/fatcat_web/templates/home.html @@ -0,0 +1,91 @@ +{% extends "base.html" %} +{% block body %} +<div class="ui container text"> + +<h1 class="ui header centered">Welcome to fatcat!</h1> + +<img class="ui fluid bordered image" src="/static/fatcat.jpg" title="CC0 photo of an oversized feline" alt=""> + +<div class="ui message"> + <div class="header">Current Status: Prototype</div> + <ul class="list"> + <li>No authentication or accounts + <li>Any edits will be lost + <li>Most creation/edit forms don't work + <li>Any data was bulk-imported, and may not be up to date + <li>Search results are from Crossref, not local API/database + </ul> +</div> + +<p>This is versioned, user-editable catalog of research publications: journal +articles, conference proceedings, pre-prints, etc. Features include archival +file-level metadata (verified digests and long-term copies, in addition to +URLs), a <a href="https://api.{{ config.FATCAT_DOMAIN }}">documented API</a>, and work/release +indexing (aka, linking together of pre-prints and final copies). +<a href="/about">Read more...</a> + +<br><br> + +<table class="ui single line table"> +<thead> +<tr><th>Entity + <th>Actions + <th>Examples + <th>Lookup +</thead> +<tr><td><b>Release</b> + <br>journal article, pre-print, book + <br>published version of a Work + <td><a href="/release/create">Create</a> + <td><a href="/release/aaaaaaaaaaaaarceaaaaaaaaai">Dummy</a> + <br><a href="/release/aaaaaaaaaaaaarceaaaaaaaaam">Realistic</a> + <td><form class="" role="lookup" action="/release/lookup" method="get"> + <div class="ui icon input"> + <i class="search icon"></i> + <input type="text" placeholder="DOI" name="doi"> + </div> + </form> +<tr><td><b>Container</b> + <br>journal or serial + <td><a href="/container/create">Create</a> + <td><a href="/container/aaaaaaaaaaaaaeiraaaaaaaaai">Dummy</a> + <br><a href="/container/aaaaaaaaaaaaaeiraaaaaaaaam">Realistic</a> + <td><form class="" role="lookup" action="/container/lookup" method="get"> + <div class="ui icon input"> + <i class="search icon"></i> + <input type="text" placeholder="ISSN-L" name="issnl"> + </div> + </form> + +<tr><td><b>Creator</b> + <br>authors, editors, translators + <td><!-- <a href="/creator/create">Create</a> --> + <td><a href="/creator/aaaaaaaaaaaaaircaaaaaaaaai">Dummy</a> + <br><a href="/creator/aaaaaaaaaaaaaircaaaaaaaaam">Realistic</a> + <td><form class="" role="lookup" action="/creator/lookup" method="get"> + <div class="ui icon input"> + <i class="search icon"></i> + <input type="text" placeholder="ORCID" name="orcid"> + </div> + </form> +<tr><td><b>File</b> + <br>specific digital blobs (immutable) + <td> + <td><a href="/file/aaaaaaaaaaaaamztaaaaaaaaai">Dummy</a> + <br><a href="/file/aaaaaaaaaaaaamztaaaaaaaaam">Realistic</a> + <td><form class="" role="lookup" action="/file/lookup" method="get"> + <div class="ui icon input"> + <i class="search icon"></i> + <input type="text" placeholder="SHA-1" name="sha1"> + </div> + </form> +<tr><td><b>Work</b> + <br>for grouping Releases + <td> + <td><a href="/work/aaaaaaaaaaaaavkvaaaaaaaaai">Dummy</a> + <br><a href="/work/aaaaaaaaaaaaavkvaaaaaaaaam">Realistic</a> + <td> +</table> + +</div> +{% endblock %} |