127 lines
3 KiB
PHP
127 lines
3 KiB
PHP
<?php
|
|
|
|
include_once './pages/PageInterface.inc.php';
|
|
|
|
/**
|
|
* This class represents the static page containing the Google map
|
|
* for the different places.
|
|
*
|
|
* @author Thomas Schwery <thomas.schwery@epfl.ch>
|
|
*/
|
|
class ContactPage implements PageInterface {
|
|
|
|
private $content;
|
|
|
|
public function __construct() {
|
|
$this->content = <<<SITU
|
|
<div class="box">
|
|
<h2>Président</h2>
|
|
<div class="index_image_left">
|
|
<img src='./images/photo_william.jpg' alt='Lolcat placeholder'>
|
|
</div>
|
|
<div class="index_text_no_indent">
|
|
William Rey <br>
|
|
Valençon <br>
|
|
3978 Flanthey <br>
|
|
027 458 28 80 <br>
|
|
<a href='mailto:william@rey-siggen.ch'>william@rey-siggen.ch</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="box">
|
|
<h2>Secrétaire</h2>
|
|
<div class="index_image_left">
|
|
<img src='./images/photo_barbara.jpg' alt='Lolcat placeholder'>
|
|
</div>
|
|
<div class="index_text_no_indent">
|
|
Barbara Emery <br>
|
|
Les Pierres Droites <br>
|
|
3971 Chermignon <br>
|
|
027 483 37 79 <br>
|
|
<a href='mailto:jbltemery@netplus.ch'>jbtlemery@netplus.ch</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="box">
|
|
<h2>Caissière</h2>
|
|
<div class="index_image_left">
|
|
<img src='./images/photo_dominique.jpg' alt='Lolcat placeholder'>
|
|
</div>
|
|
<div class="index_text_no_indent">
|
|
Dominique Métrailler <br>
|
|
3975 Bluche <br>
|
|
027 481 32 64 <br>
|
|
<a href='mailto:do.metrailler@netplus.ch'>do.metrailler@netplus.ch</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="box">
|
|
<h2>Responsables des terrains</h2>
|
|
<h3>Responsable terrain Field</h3>
|
|
<div class="index_image_left">
|
|
<img src='./images/photo_william.jpg' alt='Lolcat placeholder'>
|
|
</div>
|
|
<div class="index_text_no_indent">
|
|
William Rey <br>
|
|
Valençon <br>
|
|
3978 Flanthey <br>
|
|
027 458 28 80 <br>
|
|
<a href='mailto:william@rey-siggen.ch'>william@rey-siggen.ch</a>
|
|
</div>
|
|
<h3>Responsable terrain FITA</h3>
|
|
<div class="index_image_left">
|
|
<img src='./images/photo_christophep.jpg' alt='Lolcat placeholder'>
|
|
</div>
|
|
<div class="index_text_no_indent">
|
|
Christophe Praplan <br>
|
|
Maison «Le Nid» <br>
|
|
1977 Icogne <br>
|
|
079 463 02 16 <br>
|
|
<a href='mailto:christophe.praplan@netplus.ch'>christophe.praplan@netplus.ch</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="box">
|
|
<h2>Initiateurs</h2>
|
|
<div class="index_image_left">
|
|
<img src='./images/photo_barbara.jpg' alt='Lolcat placeholder'>
|
|
</div>
|
|
<div class="index_text_no_indent">
|
|
Barbara Emery <br>
|
|
Les Pierres Droites <br>
|
|
3971 Chermignon <br>
|
|
027 483 37 79 <br>
|
|
<a href='mailto:jbltemery@netplus.ch'>jbtlemery@netplus.ch</a>
|
|
</div>
|
|
</div>
|
|
<div class="box">
|
|
<h3></h3>
|
|
<div class="index_image_left">
|
|
<img src='./images/photo_christophes.jpg' alt='Lolcat placeholder'>
|
|
</div>
|
|
<div class="index_text_no_indent">
|
|
Christophe Schwery <br>
|
|
Marune 7 <br>
|
|
1977 Icogne <br>
|
|
027 483 41 05 <br>
|
|
<a href='mailto:christophe@schwery.me'>christophe@schwery.me</a>
|
|
</div>
|
|
</div>
|
|
SITU;
|
|
}
|
|
|
|
public function getContent() {
|
|
return $this->content;
|
|
}
|
|
|
|
public function getTitle() {
|
|
//return Localization::situationMap;
|
|
return "Contacts";
|
|
}
|
|
|
|
public static function getStaticTitle() {
|
|
//return Localization::situationMap;
|
|
return "Contacts";
|
|
}
|
|
}
|
|
?>
|