Module:Infobox/Style architectural

 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 Style architectural.


local location = require "Module:Infobox/Fonctions/Géolocalisation"
local general = require "Module:Infobox/Fonctions"
local wikidata = require "Module:Wikidata"
local localdata = require "Module:Infobox/Localdata"

return 
	{
	maincolor = 'E1E1E1',
    parts =
    	{
			general.title(),
			general.logo('100px'),
			general.mainimage('Article à illustrer', 'Defaut 2.svg'),
					
				{type = 'table',
					rows = 	{
							{type = 'row', label = 'Mouvement', plurallabel = 'Mouvements', value = 'mouvement', property = 'P279'},
							{type = 'row', label = 'Influencé par', value = 'influencé par', property = 'P737'},
							}
				},
				{type = 'table', title='Extension géographique',
					rows = 	{
							general.country(),
							{type = 'row', label = 'Région', plurallabel = 'Régions', value = 'région', property = 'P706'},
							{type = 'row', label = 'Lieu', plurallabel = 'Lieux', value = 'lieu', property = 'P276'},
							{type = 'row', label = 'Domaine historique', plurallabel = 'Domaines historiques', value = 'domaine historique'},
							}
				},	
				{type = 'table', title='Cible et chronologie',
					rows = 	{
							{type = 'row', label = 'Époque', plurallabel = 'Époques', value = 'époques'},
							{type = 'row', label = 'Date', plurallabel = 'Dates', value = 'date', property = 'P585'},
							{type = 'row', label = 'Date de début', plurallabel = 'Dates de début', value = 'date début', property = 'P580'},
							{type = 'row', label = 'Date de fin', plurallabel = 'Dates de fin', value = 'date fin', property = 'P582'},
							{type = 'row', label = 'Édifice concerné', plurallabel = 'Édifices concernés', value = 'édifices'},
							}
				},
    	}
	}