বিষয়বস্তুতে চলুন

মডিউল:Navbar

From ওয়ার্ল্ডপিডিয়া, the free encyclopedia
Arsait (আলোচনা | অবদান) কর্তৃক ০৪:৩২, ২৫ ফেব্রুয়ারি ২০২৫ তারিখে সংশোধিত সংস্করণ (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")

এই মডিউলের জন্য মডিউল: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