made it display authors or dates if one is available

这个提交包含在:
Izaya 2018-10-15 19:16:56 +11:00
父节点 63ab3b285f
当前提交 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: ")