2022-01-17 20:23:04 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2022-01-17 20:48:24 +00:00
|
|
|
|
2022-01-17 20:23:04 +00:00
|
|
|
<head>
|
2022-02-02 15:48:25 +00:00
|
|
|
<title>
|
2022-02-17 21:07:15 +00:00
|
|
|
{{#if post.Title}}
|
|
|
|
{{post.Title}} -
|
2022-02-02 15:48:25 +00:00
|
|
|
{{/if}}
|
|
|
|
rimgo
|
|
|
|
</title>
|
2022-01-18 23:31:15 +00:00
|
|
|
|
2022-01-17 20:23:04 +00:00
|
|
|
{{> partials/head }}
|
2022-01-18 23:05:06 +00:00
|
|
|
|
2022-01-17 22:11:33 +00:00
|
|
|
<link rel="stylesheet" href="/static/fonts/Material-Icons-Outlined.css" />
|
2022-01-17 20:48:24 +00:00
|
|
|
<link rel="stylesheet" href="/static/css/album.css" />
|
2022-01-18 23:05:06 +00:00
|
|
|
<link rel="stylesheet" href="/static/css/comments.css" />
|
|
|
|
|
2022-01-17 20:23:04 +00:00
|
|
|
</head>
|
2022-01-17 20:48:24 +00:00
|
|
|
|
2022-01-17 20:23:04 +00:00
|
|
|
<body>
|
2022-01-17 20:48:24 +00:00
|
|
|
{{> partials/header }}
|
|
|
|
|
2022-08-05 00:14:17 +00:00
|
|
|
<header>
|
2022-02-17 21:07:15 +00:00
|
|
|
<h1>{{post.Title}}</h1>
|
|
|
|
<p>{{post.CreatedAt}}</p>
|
2022-08-05 00:14:17 +00:00
|
|
|
</header>
|
|
|
|
|
|
|
|
<main>
|
2022-01-17 22:11:33 +00:00
|
|
|
<div class="imageMeta__wrapper">
|
2022-02-17 21:07:15 +00:00
|
|
|
{{#if post.User.Username}}
|
2022-02-02 15:46:47 +00:00
|
|
|
<div class="user">
|
2022-02-17 21:07:15 +00:00
|
|
|
<a href="/user/{{post.User.Username}}">
|
|
|
|
<img src="{{post.User.Avatar}}" class="pfp" width="36" height="36" loading="lazy" />
|
2022-02-02 15:46:47 +00:00
|
|
|
</a>
|
2022-02-17 21:07:15 +00:00
|
|
|
<a href="/user/{{post.User.Username}}">
|
2022-02-02 15:46:47 +00:00
|
|
|
<p>
|
2022-02-17 21:07:15 +00:00
|
|
|
<b>{{post.User.Username}}</b>
|
2022-02-02 15:46:47 +00:00
|
|
|
</p>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2022-01-17 22:11:33 +00:00
|
|
|
<div class="imageMeta">
|
2022-01-18 00:21:43 +00:00
|
|
|
<div class="imageMeta__item">
|
|
|
|
<span class="material-icons-outlined" title="Views">visibility</span>
|
2022-02-17 21:07:15 +00:00
|
|
|
<p>{{post.Views}}</p>
|
2022-01-18 00:21:43 +00:00
|
|
|
</div>
|
2022-02-17 21:07:15 +00:00
|
|
|
{{#if post.SharedWithCommunity}}
|
|
|
|
<p><span class="material-icons-outlined" title="Likes">thumb_up</span> {{post.Upvotes}}</p>
|
|
|
|
<p><span class="material-icons-outlined" title="Dislilkes">thumb_down</span> {{post.Downvotes}}</p>
|
2022-01-26 21:28:03 +00:00
|
|
|
{{/if}}
|
2022-01-17 22:11:33 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2022-02-17 21:07:15 +00:00
|
|
|
{{#each post.Media}}
|
2022-01-17 22:11:33 +00:00
|
|
|
{{#if this.Title}}
|
2022-02-10 01:04:09 +00:00
|
|
|
<h4>{{this.Title}}</h4>
|
2022-01-17 22:11:33 +00:00
|
|
|
{{/if}}
|
|
|
|
{{#if this.Description}}
|
2022-03-22 02:20:16 +00:00
|
|
|
<p>{{this.Description}}</p>
|
2022-01-17 22:11:33 +00:00
|
|
|
{{/if}}
|
2022-01-18 00:25:49 +00:00
|
|
|
|
|
|
|
<div class="center">
|
2022-01-18 21:45:57 +00:00
|
|
|
{{#equal this.Type "image"}}
|
2022-01-18 00:25:49 +00:00
|
|
|
<img src="{{this.Url}}" loading="lazy">
|
2022-01-18 21:45:57 +00:00
|
|
|
{{/equal}}
|
|
|
|
{{#equal this.Type "video"}}
|
|
|
|
<video controls loop>
|
|
|
|
<source type="{{this.MimeType}}" src="{{this.Url}}" />
|
|
|
|
</video>
|
|
|
|
{{/equal}}
|
2022-01-18 00:25:49 +00:00
|
|
|
</div>
|
2022-01-17 20:48:24 +00:00
|
|
|
{{/each}}
|
2022-01-18 23:05:06 +00:00
|
|
|
|
2022-02-21 17:14:00 +00:00
|
|
|
{{#if post.tags}}
|
|
|
|
<div class="tags">
|
2022-07-22 16:20:51 +00:00
|
|
|
<style nonce="{{nonce}}">
|
|
|
|
{{#each post.tags}}
|
|
|
|
.{{this.BackgroundId}} { background-image: url('{{this.Background}}') }
|
|
|
|
{{/each}}
|
|
|
|
</style>
|
2022-02-21 17:14:00 +00:00
|
|
|
{{#each post.tags}}
|
|
|
|
<a href="/t/{{this.Tag}}">
|
2022-07-22 16:20:51 +00:00
|
|
|
<div class="tag {{this.BackgroundId}}">
|
2022-02-21 17:14:00 +00:00
|
|
|
<p class="tag__display">{{this.Display}}</p>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2022-08-05 00:14:17 +00:00
|
|
|
</main>
|
2022-02-21 17:14:00 +00:00
|
|
|
|
2022-08-05 00:14:17 +00:00
|
|
|
<section>
|
2022-01-24 01:59:29 +00:00
|
|
|
{{#if comments}}
|
2022-01-18 23:05:06 +00:00
|
|
|
<div>
|
|
|
|
<hr>
|
|
|
|
<input id="comments__expandBtn" type="checkbox">
|
|
|
|
<label class="comments__expandBtn__label" for="comments__expandBtn">
|
2022-02-17 21:07:15 +00:00
|
|
|
<h3>Comments ({{post.Comments}})</h3>
|
2022-01-18 23:05:06 +00:00
|
|
|
<span class="comments__expandBtn__icon material-icons-outlined"></span>
|
|
|
|
</label>
|
|
|
|
<div class="comments">
|
|
|
|
{{#each comments}}
|
|
|
|
{{> partials/comment }}
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<hr>
|
2022-01-24 01:59:29 +00:00
|
|
|
{{/if}}
|
2022-08-05 00:14:17 +00:00
|
|
|
</section>
|
2022-01-17 22:11:33 +00:00
|
|
|
|
|
|
|
{{> partials/footer }}
|
2022-01-17 20:23:04 +00:00
|
|
|
</body>
|
2022-01-17 20:48:24 +00:00
|
|
|
|
2022-01-17 20:23:04 +00:00
|
|
|
</html>
|