Add useful links

This commit is contained in:
David Erwin
2017-01-25 15:27:38 -05:00
parent 29e69a66bb
commit 1f1b1d43ae
2 changed files with 7 additions and 13 deletions
+1 -1
View File
@@ -21,7 +21,7 @@
<main>
<h1><%= title %></h1>
<p><%= body %></p>
<p><a href="/admin">Visit the moderation console</a></p>
<p><a href="/admin">Admin</a> - <a href="/assets">All Assets</a></p>
<div id='coralStreamEmbed'></div>
</main>
+6 -12
View File
@@ -1,20 +1,14 @@
<html>
<head>
Asset list
</head>
<body>
<p>
Clicking on an asset below will bring you to its comment stream.
</p>
<p>
You may paginate manually using skip and limit query params. (aka, ?skip=100&limit=25)
</p>
<p>
This is intended for developer use only.
</p>
<h1>
Asset list
</h1>
<% assets.forEach(function (asset) { %>
<a href="/assets/id/<%= asset.id %>"><%= asset.url %></a><br />
<% }) %>
<p>
(For dev use only. FYI, you can: ?skip=100&limit=25)
</p>
</body>
</html>