made it display authors or dates if one is available

This commit is contained in:
Izaya 2018-10-15 19:16:56 +11:00
rodič 63ab3b285f
revize bcd90e907c
2 změnil soubory, kde provedl 5 přidání a 2 odebrání

Zobrazit soubor

@ -38,6 +38,9 @@ for i = #ftab, 1, -1 do
end
f:write("</div>")
end
if page.author or page.date then
f:write('<h4><div class="wrapper"><div class="left-column">By '..(page.author or "")..'</div><div class="right-column">'..(page.date or "")..'</div></div></h4>\n')
end
if page.tags then
f:write("<h4>Tags: ")
for w in page.tags:gmatch("%S+") do

Zobrazit soubor

@ -44,8 +44,8 @@ for k,infile in pairs(mdfiles) do
f:write("<html><head><title>"..(page.title or "").."</title>\n")
f:write(sitelib.header)
f:write(page.html)
if page.author and page.date then
f:write('<h4><div class="wrapper"><div class="left-column">By '..(page.author or "")..'</div><div class="right-column">'..(page.date or "")..'</div></div></h3>\n')
if page.author or page.date then
f:write('<h4><div class="wrapper"><div class="left-column">By '..(page.author or "")..'</div><div class="right-column">'..(page.date or "")..'</div></div></h4>\n')
end
if page.tags then
f:write("<h4>Tags: ")