2022-02-23 00:06:39 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
{{> partials/head }}
|
|
|
|
|
2022-07-16 19:59:06 +00:00
|
|
|
<link rel="stylesheet" href="/static/fonts/Material-Icons-Outlined.css" />
|
2022-02-23 00:06:39 +00:00
|
|
|
<link rel="stylesheet" href="/static/css/embed.css" />
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2022-07-16 19:59:06 +00:00
|
|
|
<div class="mediaWrapper">
|
|
|
|
<div class="media">
|
|
|
|
{{#each post.Media}}
|
|
|
|
{{#equal this.Type "image"}}
|
|
|
|
<img src="{{this.Url}}" loading="lazy">
|
|
|
|
{{/equal}}
|
|
|
|
{{#equal this.Type "video"}}
|
|
|
|
<video controls loop>
|
|
|
|
<source type="{{this.MimeType}}" src="{{this.Url}}" />
|
|
|
|
</video>
|
|
|
|
{{/equal}}
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="postMeta">
|
|
|
|
<div class="postDetails">
|
|
|
|
{{#if post.TItle}}
|
|
|
|
<a href="/{{post.Id}}">
|
|
|
|
<h3>{{post.Title}}</h3>
|
|
|
|
</a>
|
|
|
|
{{/if}}
|
|
|
|
<div class="views">
|
|
|
|
<span class="material-icons-outlined" title="Views">visibility</span>
|
|
|
|
<p>{{post.Views}}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="logoContainer">
|
|
|
|
<a href="/{{post.Id}}">
|
|
|
|
<img src="/static/img/rimgo.svg" width="32px" height="32px" class="logo">
|
|
|
|
</a>
|
|
|
|
<a href="/{{post.Id}}">
|
|
|
|
rimgo
|
|
|
|
</a>
|
|
|
|
</div>
|
2022-02-23 00:06:39 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|