2020-05-16 01:10:11 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title><%= title %></title>
|
|
|
|
<link href="/_css/milligram.css" rel="stylesheet">
|
2020-05-17 18:05:00 +02:00
|
|
|
<link href="/_css/style.css" rel="stylesheet">
|
2020-05-16 01:10:11 +02:00
|
|
|
</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>
|
|
|
|
|