smr/src/pages/read.etlua

35 lines
911 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title><%= title %></title>
<link href="/_css/style.css" rel="stylesheet">
<link href="/_css/milligram.css" rel="stylesheet">
</head>
<body class="container">
<main class="wrapper">
<h1>
<a href="https://<%= domain %>"><%= domain %></a>/<a href="https://<%= domain %>/<%= idp %>"><%= idp %></a>
</h1>
<% 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 %>
<h1 class="title">
<%- title %>
</h1>
<% if isanon then %>
By Anonymous
<% else %>
By <a href="https://<%= author %>.<%= domain %>"><%= author %></a>
<% end %>
<article class="container content">
<%- text %>
</article>
</main>
</body>
</html>