made it display authors or dates if one is available

このコミットが含まれているのは:
Izaya 2018-10-15 19:16:56 +11:00
コミット bcd90e907c
2個のファイルの変更5行の追加2行の削除

ファイルの表示

@ -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

ファイルの表示

@ -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: ")