miniblog

Miniblog: A command-line static blog system in Common Lisp
Log | Files | Refs | README | LICENSE

commit ab4596dab4eb6c2e72b377dd1f0144bb3465273a
parent 62ed6e2124716218a68c77f4da59cb2911b5d930
Author: Decay <decaydjk@tilde.town>
Date:   Sun, 22 Mar 2020 23:33:58 +0000

Make default template handle the links list better

Diffstat:
Msrc/template.lhtml | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/template.lhtml b/src/template.lhtml @@ -33,7 +33,7 @@ <section id="miniblog-left"> <% @if links %> <% @loop links %> - <a href="<% @var link %>"><% @var text %></a> + <a href="<% @var link %>"><% @var text %></a><br> <% @endloop %> <% @endif %> </section>