Utilisateur:François : Différence entre versions
De atlasmuseum
Ligne 1 : | Ligne 1 : | ||
+ | import React, { Component } from 'react' | ||
+ | import PropTypes from 'prop-types' | ||
+ | import Checkbox from '@material-ui/core/Checkbox' | ||
+ | import { MuiThemeProvider } from '@material-ui/core/styles' | ||
+ | |||
+ | import PersonalInformations from '../personalInformations/personalInformations' | ||
+ | import PaxList from '../paxList/paxList' | ||
+ | import './contact.css' | ||
+ | import theme from '../../assets/theme' | ||
+ | import langEn from './translation/en.json' | ||
+ | import langFr from './translation/fr.json' | ||
+ | |||
+ | /** | ||
+ | * Contact d'une page. | ||
+ | * | ||
+ | * @param {string} [title] - Titre du Contact | ||
+ | * @param {string} [value] - Contenu du Contact | ||
+ | * @param {func} [onChange] - Recuperation nouvelle valeur du Contact apres changement | ||
+ | * | ||
+ | */ | ||
+ | |||
+ | let lang = langEn | ||
+ | |||
<ArtworkPage | <ArtworkPage | ||
q="Q20672521" | q="Q20672521" | ||
titre="Serpentine rouge" | titre="Serpentine rouge" | ||
− | + | site_coordonnees="47.19653108157, -1.6777592897415" | |
artiste="Jimmie Durham" | artiste="Jimmie Durham" | ||
nature="pérenne" | nature="pérenne" | ||
Ligne 21 : | Ligne 44 : | ||
contexte_production="Manifestation Estuaire 2009" | contexte_production="Manifestation Estuaire 2009" | ||
periode_art="art contemporain" | periode_art="art contemporain" | ||
− | + | site_nom="DCNS" | |
− | + | site_details="Quai de l'entreprise DCNS" | |
− | + | site_ville="Indre" | |
− | + | site_departement="Loire-Atlantique" | |
− | + | site_region="Pays de la Loire" | |
− | + | site_pays="France" | |
− | + | site_visibilite="depuis le bac assurant la traversée de la Loire" | |
− | + | site_pmr="site accessible aux personnes à mobilité réduite" | |
− | + | site_pois="Ermitage de Saint-Ermeland à proximité" | |
commissaires="Virginie Pringuet" | commissaires="Virginie Pringuet" | ||
commanditaires="CRDC / Estuaire" | commanditaires="CRDC / Estuaire" | ||
Ligne 35 : | Ligne 58 : | ||
conservation="bon état" | conservation="bon état" | ||
source="http://www.estuaire.info/fr/oeuvre/serpentine-rouge/" | source="http://www.estuaire.info/fr/oeuvre/serpentine-rouge/" | ||
− | + | has_imagegalerieconstruction="Capture d’écran 2016-09-18 à 15.14.01.png" | |
− | + | has_imagegalerieautre="DURHAM.gif;P1030762.jpg;42639112.jpg;Panoramique-nord-Indret.jpg" | |
/> | /> | ||
<div style="visibility:hidden; height:0px"> | <div style="visibility:hidden; height:0px"> |
Version du 21 février 2019 à 17:05
import React, { Component } from 'react' import PropTypes from 'prop-types' import Checkbox from '@material-ui/core/Checkbox' import { MuiThemeProvider } from '@material-ui/core/styles'
import PersonalInformations from '../personalInformations/personalInformations' import PaxList from '../paxList/paxList' import './contact.css' import theme from '../../assets/theme' import langEn from './translation/en.json' import langFr from './translation/fr.json'
/**
* Contact d'une page. * * @param {string} [title] - Titre du Contact * @param {string} [value] - Contenu du Contact * @param {func} [onChange] - Recuperation nouvelle valeur du Contact apres changement * */
let lang = langEn