mirror of
https://github.com/lxsang/antd-web-apps
synced 2024-11-20 10:18:21 +01:00
90 lines
2.7 KiB
Plaintext
90 lines
2.7 KiB
Plaintext
<?lua
|
|
local arg = {...}
|
|
local data = arg[1]
|
|
local order = arg[2]
|
|
local content = nil;
|
|
local topview = loadscript(BLOG_ROOT.."/view/top.ls")
|
|
local class = "card"
|
|
if HEADER.mobile then
|
|
class = "card mobile"
|
|
end
|
|
local title = "Welcome to my blog"
|
|
if not #data or #order == 0 then
|
|
topview(title)
|
|
?>
|
|
<div class = "notfound">
|
|
<p>No entry found</p>
|
|
<blockquote>
|
|
“In many ways my life has been rather like a record of the lost and found. Perhaps all lives are like that.”
|
|
<span>― Lucy Foley, The Book of Lost and Found</span>
|
|
</blockquote >
|
|
</div>
|
|
<?lua
|
|
return
|
|
else
|
|
data = data[0]
|
|
content = bytes.__tostring(std.b64decode(data.rendered)):gsub("%%","%%%%")
|
|
local a,b = content:find("<[Hh]1[^>]*>")
|
|
if a then
|
|
local c,d = content:find("</[Hh]1>")
|
|
if c then
|
|
title = content:sub(b+1, c-1)
|
|
end
|
|
end
|
|
topview(title)
|
|
end
|
|
|
|
?>
|
|
<div class = "<?=class?>">
|
|
<div class = "side">
|
|
<span class = "date"><?=data.ctimestr:gsub("%s+.*$","")?></span>
|
|
<span class = "tags">
|
|
<?lua
|
|
local atags = {}
|
|
local i = 1
|
|
for tag in data.tags:gmatch(",*([^,]+)") do
|
|
tag = std.trim(tag, " ")
|
|
if tag ~= "" then
|
|
local b64tag = std.b64encode(tag)
|
|
atags[i] = '<a href = "./r:bytag:'..b64tag:gsub("=","")..':'..MAX_ENTRY..'">'..tag.."</a>"
|
|
i = i+ 1
|
|
end
|
|
end
|
|
echo(table.concat(atags, ", "))
|
|
?>
|
|
</span>
|
|
|
|
</div>
|
|
<div class = "blogentry">
|
|
<div class = "shortcontent">
|
|
<?lua
|
|
local r, s = content:find("<hr/?>")
|
|
if r then
|
|
echo(content:sub(0,r-1))
|
|
echo(content:sub(s+1))
|
|
else
|
|
echo(content)
|
|
end
|
|
?>
|
|
</div>
|
|
<h1 class = "commentsec">Comments</h1>
|
|
<div class = "commentform">
|
|
<div class = "inputbox">
|
|
<div class = "label">Name:</div>
|
|
<input data-class = "data" type = "text" name = "name" />
|
|
</div>
|
|
|
|
<div class = "inputbox">
|
|
<div class = "label">Email:</div>
|
|
<input data-class = "data" type = "text" name = "email" />
|
|
</div>
|
|
|
|
<textarea data-class = "data" name = "content"></textarea>
|
|
<div class = "inputboxbt">
|
|
<div data-id="status"></div>
|
|
<button data-id = "send" >Comment</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|