website/post_viewer.html
2022-10-30 20:04:09 -04:00

36 lines
1.1 KiB
HTML

<!--Page design by Unix_Petrel (2022)-->
<!--This HTML document is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License. Get a copy of the license at https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/x-icon" href="/assets/images/favicon.png">
<link rel="stylesheet" href="/main_theme.css">
<title>Post Viewer - Snowcake</title>
</head>
<body>
<h1>PostTitle</h1>
<h2>Date: PostDate</h2>
<div>
<a href="/posts" class="button">📰 Back to Post List</a>
</div>
<br>
<br>
<div class="content">
<p style="text-align: left">PostContent</p>
<br>
<p style="text-align: left">Signed,</p>
<p style="text-align: left">Unix_Petrel (Primrose)</p>
</div>
<br>
<br>
<br>
<div class="footer">
<footer>Page design by Unix_Petrel (Primrose)</footer>
<br>
<footer><a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">This page is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License</a></footer>
</div>
</body>
</html>