Modul:Infobox

Aus HTK Wiki
Zur Navigation springen Zur Suche springen

local p = {}

function p.ShowInfoBoxOmniMDE(frame) local capiunto = require 'capiunto' return capiunto.create( {title = tostring(mw.title.getCurrentTitle())} ) :addImage( string.format('Datei:%s', 'OmniMDE_Logo_v9.png'), -- featured image 'OmniMDE Logo 2017' -- caption ) :addRow( 'Hersteller', 'HTK GmbH & Co. KG') :addRow( 'Release', '26.08.2016') :addRow( 'Version', '0.1.18.2494') :addRow( 'Webseite', 'http://www.htk.de') end

return p