Module:Infobox/Philosophe

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

local person = require "Module:Infobox/Fonctions/Personne"
return 
	{
	maincolor = '#B0C4DE',
	parts =
    	{
			{
			type = 'title',
			value = 'nom',
			icon = 'auteur', 
			},
			person.mainimage('Article à illustrer Philosophe'),
			{type = 'table',
			rows = 
				{
				{type = 'mixed', label = 'Activités', value = 'activités'},
				person.birth(),
				person.death(),
				person.placeofburial(),
				person.nationality(),
				--person.nativelanguage(),
				{type = 'mixed', label = 'Titre', value = 'titre'},
				person.education(),
				{type = 'mixed', label = 'École/tradition', value = 'tradition philosophique'},
				{type = 'mixed', label = 'Principaux intérêts', value = 'principaux intérêts'},
				{type = 'mixed', label = 'Idées remarquables', value = 'idées remarquables'},
				{type = 'mixed', label = 'Œuvres principales', value = 'œuvres principales'},
				person.influencedby(),
				person.influenced(),
				{type = 'mixed', label = 'Célèbre pour', value = 'célèbre pour'},
				{type = 'mixed', label = 'Citation', value = 'citation'},
				{type = 'mixed', label = 'Adjectifs dérivés', value= 'adjectifs dérivés'},
				person.family(),
				person.awards(),
				}
			},
			person.signature(),
		}
	}