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

মডিউল: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
ট্যাগ: মোবাইল সম্পাদনা মোবাইল ওয়েব সম্পাদনা
 
(কোনও পার্থক্য নেই)

২৩:১২, ২ মার্চ ২০২৫ তারিখে সম্পাদিত সর্বশেষ সংস্করণ

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