Add footer text around data

This commit is contained in:
jultty 2024-05-20 14:45:38 -03:00
commit a722ab3a99
3 changed files with 16 additions and 8 deletions

View file

@ -130,10 +130,12 @@ CSS Theme</a></li>
<footer>
<hr/>
<div class="footer-text">
<span class="author">Juno Takano</span>,
<span id="author-pre-text">posted by</span>
<span class="author">Juno Takano</span>
<span id="date-pre-text">on</span>
<span class="date">23 de fevereiro de 2024</span>
<span class="footer-back" aria-role="nav" aria-label="Navigate back">
<a id="footer-back-link" href="../index.html">Voltar</a>
<a id="footer-back-link" href="../index.html">Back</a>
</span>
</div>
</footer>

6
posts/template.html generated
View file

@ -66,13 +66,15 @@ $endfor$
<footer>
<hr/>
<div class="footer-text">
<span id="author-pre-text">posted by</span>
$for(author)$
<span class="author">$author$</span>,
<span class="author">$author$</span>
$endfor$
<span id="date-pre-text">on</span>
$if(date)$
<span class="date">$date$</span>
<span class="footer-back" aria-role="nav" aria-label="Navigate back">
<a id="footer-back-link" href="../index.html">Voltar</a>
<a id="footer-back-link" href="../index.html">Back</a>
</span>
$endif$
</div>