2020-05-16 01:10:11 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2020-05-20 02:13:30 +02:00
|
|
|
<meta name="author" content="<%= author %>">
|
|
|
|
<title><%- title %></title>
|
2020-05-16 01:10:11 +02:00
|
|
|
<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>
|
2020-05-20 02:13:30 +02:00
|
|
|
<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">
|
2020-05-16 01:10:11 +02:00
|
|
|
<%- title %>
|
2020-05-20 02:13:30 +02:00
|
|
|
</h2>
|
|
|
|
<h3>
|
2020-05-16 01:10:11 +02:00
|
|
|
<% if isanon then %>
|
|
|
|
By Anonymous
|
|
|
|
<% else %>
|
|
|
|
By <a href="https://<%= author %>.<%= domain %>"><%= author %></a>
|
|
|
|
<% end %>
|
2020-05-20 02:13:30 +02:00
|
|
|
</h3>
|
|
|
|
<%- text %>
|
|
|
|
</article>
|
|
|
|
</main></body>
|
2020-05-16 01:10:11 +02:00
|
|
|
</html>
|
|
|
|
|