Chronos chronos left.png
Rusmed logo color.png
Chronos chronos right.png

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Module:Cartouche

De Commission Historique

La documentation pour ce module peut être créée à Module:Cartouche/doc

local p = {}

function p.cartouche(frame)
	local prenom,nom = frame.args['prenom'], frame.args['nom']
	local c = '{| style=\"width: 30em; font-size: 90%; border: 1px solid #aaaaaa; background-color: #f9f9f9; color: black; margin-bottom: 0.5em; margin-left: 1em; padding: 0.2em; float: right; clear: right; text-align:left;\" ! style=\"text-align: center; background-color:#cccccc;\" colspan=\"2\" |<big>'  .. prenom .. ' ' .. nom .. '</big>'
	c = prenom ..' '.. nom
	return c
end

return p