smr/src/pages/read.etlua

35 lines
903 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="<%= author %>">
<title><%- title %></title>
<link href="/_css/milligram.css" rel="stylesheet">
<link href="/_css/style.css" rel="stylesheet">
</head>
<body><main class="wrapper">
<nav>
<a href="https://<%= domain %>"><%= domain %></a>/<a href="https://<%= domain %>/<%= idp %>"><%= idp %></a>
</nav>
<% if owner then %>
<form action="https://<%= domain %>/_edit" method="get"><fieldset>
<input type="hidden" name="story" value="<%= idp %>"/>
<input type="submit" value="edit" class="button"/>
</fieldset></form>
<% end %>
<h2 class="title">
<%- title %>
</h2>
<h3>
<% if isanon then %>
By Anonymous
<% else %>
By <a href="https://<%= author %>.<%= domain %>"><%= author %></a>
<% end %>
</h3>
<%- text %>
</article>
</main></body>
</html>