diff options
-rw-r--r-- | python/fatcat/templates/about.html | 4 | ||||
-rw-r--r-- | python/fatcat/templates/base.html | 6 | ||||
-rw-r--r-- | python/fatcat/templates/home.html | 49 |
3 files changed, 33 insertions, 26 deletions
diff --git a/python/fatcat/templates/about.html b/python/fatcat/templates/about.html index ce194099..3ff67c19 100644 --- a/python/fatcat/templates/about.html +++ b/python/fatcat/templates/about.html @@ -1,7 +1,9 @@ {% extends "base.html" %} {% block body %} -<h1>About fatcat!</h1> +<h1>fatcat Design Document (RFC)</h1> + +<p><i>Version: April 2018</i> <p>fatcat is a half-baked idea to build an open, independent, collaboratively editable bibliographic database of most written works, with a focus on published research outputs like journal articles, pre-prints, and conference proceedings.</p> <h2 id="technical-architecture">Technical Architecture</h2> diff --git a/python/fatcat/templates/base.html b/python/fatcat/templates/base.html index 697705c3..ae487a18 100644 --- a/python/fatcat/templates/base.html +++ b/python/fatcat/templates/base.html @@ -32,12 +32,12 @@ </div> </div> <div class="ui simple dropdown item"> - acidburn <i class="dropdown icon"></i> + demo-user <i class="dropdown icon"></i> <div class="menu"> <a class="item" href="/editgroup/current">Open Submissions</a> - <a class="item" href="/editor/admin/changelog">Edit History</a> + <a class="item" href="/editor/demo-user/changelog">Edit History</a> <div class="divider"></div> - <a class="item" href="/editor/admin">Account</a> + <a class="item" href="/editor/demo-user">Account</a> <a class="item" href="/logout">Logout</a> </div> </div> diff --git a/python/fatcat/templates/home.html b/python/fatcat/templates/home.html index cea4f687..246c3a4d 100644 --- a/python/fatcat/templates/home.html +++ b/python/fatcat/templates/home.html @@ -1,29 +1,34 @@ {% extends "base.html" %} {% block body %} -<h1>Salutations!</h1> +<h1>Welcome to fatcat!</h1> -Just mockups for now... +<p><b>Current Status:</b> Demo/prototype. No authentication, etc. All edits +will be lost. -<ul> - <li><b>Work:</b> - <a href="/work/create">Create</a>, - <a href="/work/random">Random</a> - <li><b>Release:</b> - <a href="/release/create">Create</a>, - <a href="/release/random">Random</a> - <li><b><strike>File:</strike></b> - <a href="/file/create">Create</a>, - <a href="/file/random">Random</a> - <li><b><strike>Contributor:</strike></b> - <a href="/contrib/create">Create</a>, - <a href="/contrib/random">Random</a> - <li><b><strike>Container:</strike></b> - <a href="/container/create">Create</a>, - <a href="/container/random">Random</a> - <li>Edit groups... - <li>Changelog... - <li>Login/Signup... -</ul> +<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.fatcat.wiki">documented API</a>, and work/release +indexing (aka, linking together of pre-prints and final copies). +<a href="/about">Read more...</a> + +<table> +<tr><td><b>Container</b> + <td><a href="/container/create">Create</a> + <td><a href="/container/00000000-0000-0000-1111-000000000002">Example</a> +<tr><td><b>Creator</b> + <td><a href="/creator/create">Create</a> + <td><a href="/creator/00000000-0000-0000-2222-000000000002">Example</a> +<tr><td><b>File</b> + <td><a href="/file/create">Create</a> + <td><a href="/file/00000000-0000-0000-3333-000000000002">Example</a> +<tr><td><b>Release</b> + <td><a href="/release/create">Create</a> + <td><a href="/release/00000000-0000-0000-4444-000000000002">Example</a> +<tr><td><b>Work</b> + <td><a href="/work/create">Create</a> + <td><a href="/work/00000000-0000-0000-5555-000000000002">Example</a> +</table> {% endblock %} |