更改

跳到导航 跳到搜索
添加400字节 、 2021年4月2日 (五) 13:43
无编辑摘要
第3行: 第3行:     
function p.latest_list(frame)
 
function p.latest_list(frame)
 +
    local user_query = frame.args.query
 +
    local query = user_query .. [[
 +
        |limit=20
 +
        |offset=0
 +
        |sort=Modification date
 +
        |order=desc
 +
    ]]
 +
    local pages = smw.query_pages(query)
 +
    local ul = mw.html.create("ul")
 +
    for i, t in ipairs(pages) do
 +
        ul:tag("li"):wikitext("[[" .. t .. "]]")
 +
    end
 +
    return ul:done()
 +
end
 +
 +
function p.latest_flat_list(frame)
 
     local user_query = frame.args.query
 
     local user_query = frame.args.query
 
     local query = user_query .. [[  
 
     local query = user_query .. [[  

导航菜单