« Module:Bandeau » : différence entre les versions
Aucun résumé des modifications |
Aucun résumé des modifications |
||
Ligne 12 : | Ligne 12 : | ||
function p.bandeau(frame) | function p.bandeau(frame) | ||
args = frame:getParent().args | args = frame:getParent().args | ||
tab = TableBuilder.new() | |||
structureHtml('div', p.classStructureBoite, p.styleStructureBoite) | |||
structureHtmlFin('div') | |||
return tab.concat() | return tab.concat() | ||
end | end | ||
function structureHtml(balise, class, style) | function structureHtml(balise, class, style) | ||
tab.insert('<' .. balise .. ' ') | tab.insert('<' .. balise .. ' ') | ||
if class and style then | if class and style then | ||
Ligne 29 : | Ligne 28 : | ||
else | else | ||
tab.insert(class or style) | tab.insert(class or style) | ||
.insert(args.contenu or 'Lorem') | |||
end | end | ||
end | |||
function structureHtmlFin(balise) | |||
tab.insert('>') | tab.insert('>') | ||
.insert('</' .. balise .. '>') | .insert('</' .. balise .. '>') | ||
end | end | ||
return p | return p |
Version du 9 février 2014 à 21:39
--Ce module implémente le modèle Modèle:Bandeau.
local p = {}
p.classStructureBoite = 'class="bandeau-simple"' p.styleStructureBoite = 'style="width:80%; margin:0 auto 1em; padding:0.5em; background:#f9f9f9; border-color:#aaa;"' p.styleStructureImage = 'style="display:table-cell; vertical-align:middle; width:50px;"' p.styleStructureTexte = 'style="display:table-cell; vertical-align:middle;"'
local TableBuilder = require('Module:TableBuilder')
function p.bandeau(frame) args = frame:getParent().args tab = TableBuilder.new()
structureHtml('div', p.classStructureBoite, p.styleStructureBoite) structureHtmlFin('div')
return tab.concat() end
function structureHtml(balise, class, style) tab.insert('<' .. balise .. ' ') if class and style then tab.insert(class) .insert(' ') .insert(style) else tab.insert(class or style) .insert(args.contenu or 'Lorem') end end
function structureHtmlFin(balise) tab.insert('>') .insert('</' .. balise .. '>') end
return p