aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat/templates/base.html
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-06-25 10:46:42 -0700
committerBryan Newbold <bnewbold@robocracy.org>2018-06-25 10:46:42 -0700
commit7ac552af63a14ed2ca36a767e762399904652d44 (patch)
treefd9a7670058185fb67f6673e7de4d9ea2cb8824d /python/fatcat/templates/base.html
parentde3eefb2125c22661950ce21c2524b83e0688ea8 (diff)
downloadfatcat-7ac552af63a14ed2ca36a767e762399904652d44.tar.gz
fatcat-7ac552af63a14ed2ca36a767e762399904652d44.zip
WIP on UI update
Diffstat (limited to 'python/fatcat/templates/base.html')
-rw-r--r--python/fatcat/templates/base.html17
1 files changed, 11 insertions, 6 deletions
diff --git a/python/fatcat/templates/base.html b/python/fatcat/templates/base.html
index ac6fef43..ab6c13ad 100644
--- a/python/fatcat/templates/base.html
+++ b/python/fatcat/templates/base.html
@@ -36,11 +36,11 @@
<div class="ui simple dropdown item">
demo-user <i class="dropdown icon"></i>
<div class="menu">
- <a class="item" href="/editgroup/current">Open Submissions</a>
- <a class="item" href="/editor/demo-user/changelog">Edit History</a>
+ <a class="item" href="/editgroup/current"><i class="edit icon"></i>Edits in Progress</a>
+ <a class="item" href="/editor/demo-user/changelog"><i class="history icon"></i>History</a>
<div class="divider"></div>
- <a class="item" href="/editor/demo-user">Account</a>
- <a class="item" href="/logout">Logout</a>
+ <a class="item" href="/editor/demo-user"><i class="user icon"></i>Account</a>
+ <a class="item" href="/logout"><i class="sign out icon"></i>Logout</a>
</div>
</div>
@@ -48,8 +48,13 @@
</div>
</header>
-<main class="ui main text container" style="margin-top: 4em; margin-bottom: 2em;">
-{% block body %}Nothing to see here.{% endblock %}
+<!-- 4em top margin is "enough" -->
+<main class="ui main container" style="margin-top: 6em; margin-bottom: 2em;">
+{% block fullbody %}
+ <div class="ui container text">
+ {% block body %}Nothing to see here.{% endblock %}
+ </div>
+{% endblock %}
</main>