Aller au contenu

Module:Infobox/Cocktail

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 Cocktail.


local general = require 'Module:Infobox/Fonctions'
local localdata = require 'Module:Infobox/Localdata'

return {
	maincolor = '#E7DCC3',
	parts = {
		{
			type = 'title', 
			value = 'nom',
			property = 'P1448', -- Élément « Nom officiel »
		},
		general.mainimage("Article à illustrer Cocktail"),
		{
			type = 'text',
			value = function() return '<hr style=\'background-color: #E7DCC3;\'>' end,
		},
		{
			type = 'table',
			rows = 	{
			{
				type = 'mixed', 
				value = 'origine',
				label = 'Pays d\'origine',
				wikidata = {
					property = {'P495', 'P17'}, -- Élément « Pays d'origine » ou « Pays »
					numval = 1 -- Pour n'afficher que l'élément prioritaire, à savoir « Pays d'origine »
				}
			},
			{
				type = 'mixed', 
				label = 'Alcool prinicipal',
				value = 'alcool principal',
			},
			{
				type = 'mixed', 
				label = 'Servi',
				value = 'servi',
			},
			{
				type = 'mixed', 
				label = 'Alternative(s)',
				value = 'alternative',
			},
			{
				type = 'mixed', 
				label = 'Décoration / garnitude',
				value = 'décoration',
			},
			{
				type = 'mixed', 
				label = 'Type de verre',
				value = 'type de verre',
			},
			{
				type = 'mixed', 
				value = 'ingrédients',
				label = 'Ingrédients',
				property = 'P186', -- Éléments « Matériau »
			},
			{
				type = 'mixed', 
				value = 'préparation',
				label = 'Préparation',
			},
			}
		},
	},
}