No edit summary |
No edit summary |
||
Line 9: | Line 9: | ||
:wikitext('[[File:'.. image .. '|250px]]') | :wikitext('[[File:'.. image .. '|250px]]') | ||
return | return mw.html.create('div'):node(title):node(imageDiv) | ||
end | end | ||
return Header | return Header |
Revision as of 16:19, 29 August 2022
Documentation for this module may be created at Module:Infobox/Widget/Header/doc
local Header = {} function Header.make(title, image) local title = mw.html.create('div') :addClass('ib-title') :wikitext(title) local imageDiv = mw.html.create('div') :addClass('ib-image') :wikitext('[[File:'.. image .. '|250px]]') return mw.html.create('div'):node(title):node(imageDiv) end return Header