-
Notifications
You must be signed in to change notification settings - Fork 1
/
maintenance-page-offline.tpl.php
106 lines (75 loc) · 3.75 KB
/
maintenance-page-offline.tpl.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<?php
$head_title = 'Lycée Provence Formation :: Site-offline';
$logo = '/sites/all/themes/susy2_pf_cyrano/images/logo-Pf-sites-lycees.jpg';
// If your theme is set to display the site name, uncomment this line and replace the value:
$site_name = 'Le site de l\' Association Provence Formation';
// If your theme is set to *not* display the site name, uncomment this line:
unset($site_name);
// If your theme is set to display the site slogan, uncomment this line and replace the value:
$site_slogan = 'Association Provence Formation - Lycées Privés Technologiques et Professionnels';
// If your theme is set to *not* display the site slogan, uncomment this line:
// unset($site_slogan);
// Main message. Note HTML markup.
$content = "<p>Le site rencontre actuellement des problèmes techniques, veuillez nous en excuser.</p><hr /><p>Si vous en êtes l'administrateur, veuillez vérifier les accès à votre base de données </p>";
//Texte pour le footer
$footer ='<p>Association Provence Formation - Tél: 04.91.53.36.30 </br>
Lycées Privés Technologiques et Professionnels -
Tous droits réservés Reproduction interdite sans autorisation</p>';
?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
<head>
<?php print $head; ?>
<title><?php print $head_title; ?></title>
<?php print $styles; ?>
<?php print $scripts; ?>
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyled Content in IE */ ?> </script>
</head>
<body class="<?php print $body_classes; ?>">
<!-- TEMPLATE PAGE MAINTENANCE DE BASE -->
<section class="conteneur">
<header id="header">
<div id="logo-title">
<?php if (!empty($logo)): ?>
<a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>" rel="home" id="logo">
<img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" />
</a>
<?php endif; ?>
<div id="name-and-slogan-offline">
<?php if (!empty($site_name)): ?>
<h1 id="site-name">
<a href="<?php print $base_path ?>" title="<?php print t('Home'); ?>" rel="home"><span><?php print $site_name; ?></span></a>
</h1>
<?php endif; ?>
<?php if (!empty($site_slogan)): ?>
<div id="site-slogan-offline"><?php print $site_slogan; ?></div>
<?php endif; ?>
</div> <!-- /name-and-slogan -->
</div> <!-- /logo-title -->
<?php if (!empty($header)): ?>
<div id="header-region">
<?php print $header; ?>
</div>
<?php endif; ?>
</header> <!-- /header -->
<!-- ______________________ LAYOUT PAGE OFFLINE _______________________ -->
<!-- ______________________ CONTENU _______________________ -->
<div id="content-global-offline">
<!-- ______________________ CONTENU CENTRAL _______________________ -->
<div id="middle-content-maintenance">
<?php
// Main message. Note HTML markup.
print $content;
?>
<?php print $feed_icons; ?>
</div> <!-- /#content-area -->
</div> <!-- /content-inner /content -->
<br clear="all"/>
<!-- ______________________ CONTENU BAS _______________________ -->
<footer id="footer-offline">
<?php print $footer; ?>
</footer> <!-- /footer-wrapper -->
</section> <!-- /conteneur -->
</body>
</html>