Minor html size optimization

This commit is contained in:
Zestyr 2019-06-21 04:35:59 +02:00
parent cf5c3afb34
commit 8dd90f4fc1
1 changed files with 5 additions and 0 deletions

View File

@ -91,7 +91,9 @@
#end proc
#
#proc renderTweet*(tweet: Tweet; class=""): string =
#if class.len > 0:
<div class="${class}">
#end if
<div class="status-el">
<div class="status-body">
${renderHeading(tweet)}
@ -110,4 +112,7 @@
${renderStats(tweet)}
</div>
</div>
#if class.len > 0:
</div>
#end if
#end proc