New global copyright notice in footer and refine pages title
This commit is contained in:
parent
e95c8d8233
commit
77cacdc7c7
7 changed files with 24 additions and 19 deletions
|
@ -104,9 +104,7 @@
|
|||
|
||||
<head>
|
||||
<?php print $head; ?>
|
||||
<title><?php
|
||||
// Suffix for public (U+00B0), authorised (U+207B) and private (U+00AA) nodes:
|
||||
print str_replace(array('°', 'ª', '⁻'), '', $head_title); ?></title>
|
||||
<title><?php print $head_title ?></title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<?php
|
||||
|
@ -173,7 +171,7 @@ if ($site_name) print '<meta property="og:site_name" content="'. $site_name ."\"
|
|||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a href="<?php print $language->language != 'es' ? "$base_url/$language->language" : $base_url; ?>" title="<?php print t('SuiteDesk homepage'); ?>" class="logo"><?php print '<img src="'. check_url($logo) .'" alt="'. $site_title .'" id="logo" />'; ?></a>
|
||||
<a href="<?php print $language->language != 'es' ? "$base_url/$language->language" : $base_url; ?>" title="<?php print t('@site_name homepage', array('@site_name' => $site_name)); ?>" class="logo"><?php print '<img src="'. check_url($logo) .'" alt="'. $site_name .'" id="logo" />'; ?></a>
|
||||
</div>
|
||||
<div id="navbar-main" class="collapse navbar-collapse">
|
||||
<?php print $primary_links; ?>
|
||||
|
@ -260,7 +258,7 @@ if ($site_name) print '<meta property="og:site_name" content="'. $site_name ."\"
|
|||
<a href="#" id="scroll-top-link" class="icon-up-open"></a>
|
||||
|
||||
<footer id="socket"><div class="section">
|
||||
<span class='copyright'>2009-<?php print date('Y'); ?> © manuel.cillero.es</span>
|
||||
<span class='copyright'><?php print date('Y') . ' © ' . ($site_name ? check_plain($site_name) : 'SuiteDesk'); ?></span>
|
||||
<ul class="social-menu">
|
||||
<li class="social-link-rss"><a href="http://manuel.cillero.es/feed" title="Rss" class="icon-rss"><span class="element-invisible">RSS</span></a></li>
|
||||
<li class="social-link-twitter"><a href="http://twitter.com/manuelcillero" title="Twitter" target="_blank" class="icon-twitter"><span class="element-invisible">Twitter</span></a></li>
|
||||
|
|
Reference in a new issue