Module:Infobox/Architecte

Une page de Wikipédia, l'encyclopédie libre.

 Documentation[voir] [modifier] [historique] [purger]

Cette page définit un module d'infobox. Pour les conseils sur l'usage de ce module, voyez Modèle:Infobox Architecte.


local person = require "Module:Infobox/Fonctions/Personne"

return 
	{
	maincolor = '#4C6099',
	style={color='#fff'},
	parts =
    	{
			person.title(),
			person.mainimage(),
			{type = 'table', title = 'Présentation', titlestyle={color='#fff'}, rows = {
				person.othernames(),
				person.birth(),
				person.death(),
				person.placeofburial(),
				person.nationality(),
				person.occupation(),
				person.places(),
				person.movement(),
				person.education(),
				person.contacts(),
				person.officialposition(),
				},
			},
			{type = 'table', title = 'Œuvre', titlestyle={color='#fff'}, rows = {
				{type = 'row', label = 'Agence', value = 'agence'},
				{type = 'row', label = 'Réalisations', value = 'réalisations'},
				{type = 'row', label = 'Projets', value = 'projets'},
				{type = 'row', label = 'Publications', value = 'publications'},
				person.awards(),
				},
			},
			{type = 'table', title = 'Entourage familial', titlestyle={color='#fff'}, rows = {
				person.family(),
				},
			},
			{type = 'table', title = 'Compléments', titlestyle={color='#fff'}, rows = {
				{type = 'row', value = 'complément'},
				person.signature(),
				},
			}
		}
	}