مندرجات کا رخ کریں

"ماڈیول:Navbar" کے نسخوں کے درمیان فرق

From ورلڈپیڈیا, the free encyclopedia
Created page with "local p = {} function p.main(frame) local output = '<div class="navbar">' output = output .. '<a href="/wiki/Main_Page" class="navbar-item">Home</a>' output = output .. '<a href="/wiki/Help:Contents" class="navbar-item">Help</a>' output = output .. '<a href="/wiki/Special:RecentChanges" class="navbar-item">Recent Changes</a>' output = output .. '</div>' return output end return p"
ٹیگ: موبائل ترمیم موبائل ویب ترمیم
م 1 revision imported from enwiki:Module:Navbar
ٹیگ: موبائل ترمیم موبائل ویب ترمیم
 
(کوئی فرق نہیں)

حالیہ نسخہ بمطابق 23:12، 2 مارچ 2025ء

"اس ماڈیول کی دستاویز ماڈیول:Navbar/دستاویز پر بنائی جاسکتی ہے"

local p = {}

function p.main(frame)
    local output = '<div class="navbar">'
    output = output .. '<a href="/wiki/Main_Page" class="navbar-item">Home</a>'
    output = output .. '<a href="/wiki/Help:Contents" class="navbar-item">Help</a>'
    output = output .. '<a href="/wiki/Special:RecentChanges" class="navbar-item">Recent Changes</a>'
    output = output .. '</div>'
    return output
end

return p