UI cleanup and changes

This commit is contained in:
video-prize-ranch
2022-10-13 17:29:05 -04:00
parent 7cad41e11d
commit 50d71ad321
9 changed files with 57 additions and 35 deletions

View File

@@ -1,9 +1,14 @@
<div class="comment">
<div class="comment__user">
{{#noteq this.User.Username "[deleted]"}}
<img src="{{this.User.Avatar}}" class="pfp" width="24" height="24" loading="lazy">
<a href="/user/{{this.User.Username}}">
<p class="comment__user__username"><b>{{this.User.Username}}</b></p>
</a>
{{/noteq}}
{{#equal this.User.Username "[deleted]"}}
<p class="comment__user__username"><b>[deleted]</b></p>
{{/equal}}
</div>
<div>
{{{this.Comment}}}

View File

@@ -28,16 +28,12 @@
<main>
<div class="imageMeta__wrapper">
{{#if post.User.Username}}
<div class="user">
<a href="/user/{{post.User.Username}}">
<img src="{{post.User.Avatar}}" class="pfp" width="36" height="36" loading="lazy" />
</a>
<a href="/user/{{post.User.Username}}">
<p>
<b>{{post.User.Username}}</b>
</p>
</a>
</div>
<a href="/user/{{post.User.Username}}" class="user">
<img src="{{post.User.Avatar}}" class="pfp" width="36" height="36" />
<p>
<b>{{post.User.Username}}</b>
</p>
</a>
{{/if}}
<div class="imageMeta">
<div class="imageMeta__item">
@@ -51,12 +47,12 @@
</div>
</div>
{{#each post.Media}}
{{#if this.Title}}
<h4>{{this.Title}}</h4>
{{/if}}
<div class="post__media">
{{#each post.Media}}
{{#if this.Title}}
<h4>{{this.Title}}</h4>
{{/if}}
<div class="center">
{{#equal this.Type "image"}}
<img src="{{this.Url}}" loading="lazy">
{{/equal}}
@@ -65,12 +61,12 @@
<source type="{{this.MimeType}}" src="{{this.Url}}" />
</video>
{{/equal}}
</div>
{{#if this.Description}}
<p>{{this.Description}}</p>
{{/if}}
{{#if this.Description}}
<p>{{{this.Description}}}</p>
{{/if}}
{{/each}}
</div>
{{#if post.tags}}
<div class="tags">
@@ -105,7 +101,6 @@
{{/each}}
</div>
</div>
<hr>
{{/if}}
</section>