arteleku_skin/templates/maintenance-page.tpl.php
2017-12-15 01:06:00 +01:00

107 lines
3.7 KiB
PHP

<?php
/**
* @file
* Default theme implementation to display a single Drupal page while offline.
*
* All the available variables are mirrored in html.tpl.php and page.tpl.php.
* Some may be blank but they are provided for consistency.
*
* @see template_preprocess()
* @see template_preprocess_maintenance_page()
*
* @ingroup themeable
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language; ?>" version="XHTML+RDFa 1.0" dir="<?php print $language->dir; ?>">
<head>
<?php print $head; ?>
<title><?php print $head_title; ?></title>
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Droid+Sans:400,700:latin', 'Droid+Sans+Mono::latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})(); </script>
<?php print $styles; ?>
<?php print $scripts; ?>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-30397593-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body class="<?php print $classes; ?>" <?php print $attributes;?>>
<?php
$images_url = file_create_url(drupal_get_path('theme', 'arteleku_skin'));
?>
<header>
<div id="bloque-tools">
<h1 id="titulo"><a href="<?php print $front_page; ?>">ARTELEKU</a></h1>
<?php print render($page['header']); ?>
</div><!-- bloque-tools-->
<div id="bloque-login" class="no-mobile">
<div id="bloque-login-link">
</div>
<div id="bloque-social">
<ul>
<li><a href="/oai2/?verb=Identify" title="OAI-PMH"><img src="<?php print $images_url;?>/images/oai.png"></a></li>
</ul>
</div>
</div><!-- bloque-login-->
</header> <!-- /.section, /#header -->
<div id="white-space"></div>
<div id="page">
<div id="sidebar" class="column sidebar">
<div id="logotipo">
<a href="<?php print $front_page; ?>"><img src="<?php print file_create_url(drupal_get_path('theme', 'arteleku_skin') . '/images/arteleku.png') ?>" alt="arteleku.net"/></a>
</div>
<div class="clear"></div>
</div> <!-- /.section, /#sidebar -->
<div id="content" class="column"><div class="section">
<a id="main-content"></a>
<?php if ($title): ?><h1 class="title" id="page-title"><?php print $title; ?></h1><?php endif; ?>
<p></p>
<?php print $content; ?>
<div class="clear"></div>
</div></div> <!-- /.section, /#content -->
<div id="footer">
<div class="clear"></div>
<div id="footer-credits">
<div class="float-left">2015 Gipuzkoako Foru Aldundia<?php print l(t('Legal Information'), 'legal'); ?></div>
<div class="float-right"><a href="http://gipuzkoa.net/"><img src="<?php print file_create_url(drupal_get_path('theme', 'arteleku_skin') . '/images/gfa.png'); ?>"></a></div>
<div class="clear"></div>
</div><!--footer-credits-->
<div class="clear"></div>
</div><!-- footer -->
</div> <!-- /page -->
</body>
</html>