33 lines
863 B
HTML
33 lines
863 B
HTML
<!--Copyright © 2022-2023 Lilium_Snow-->
|
|
<!--This HTML document is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. Get a copy of the license at https://creativecommons.org/licenses/by-sa/4.0/legalcode-->
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en-US">
|
|
<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">Lilium_Snow (Primrose)</p>
|
|
</div>
|
|
<br>
|
|
<br>
|
|
<br>
|
|
</body>
|
|
</html>
|