1
0
mirror of https://github.com/zedeus/nitter.git synced 2025-12-06 03:55:36 -05:00

Minor html size optimization

This commit is contained in:
Zed
2019-06-21 04:35:59 +02:00
parent cd4e873a45
commit 2a5e0a3f54

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