1
0
Fork 0
pluxml-theme-4arts/header.php

62 lines
2.7 KiB
PHP

<?php if (!defined('PLX_ROOT')) exit; ?>
<!DOCTYPE html>
<html lang="<?php $plxShow->defaultLang() ?>">
<head>
<meta charset="<?php $plxShow->charset('min'); ?>">
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0">
<title><?php $plxShow->pageTitle(); ?></title>
<?php $plxShow->meta('description') ?>
<?php $plxShow->meta('keywords') ?>
<?php $plxShow->meta('author') ?>
<link rel="icon" href="<?php $plxShow->template(); ?>/img/favicon.png" />
<link rel="stylesheet" href="<?php $plxShow->template(); ?>/css/plucss.css" media="screen"/>
<link rel="stylesheet" href="<?php $plxShow->template(); ?>/css/theme.css" media="screen"/>
<?php $plxShow->templateCss() ?>
<?php $plxShow->pluginsCss() ?>
<link rel="alternate" type="application/rss+xml" title="<?php $plxShow->lang('ARTICLES_RSS_FEEDS') ?>" href="<?php $plxShow->urlRewrite('feed.php?rss') ?>" />
<link rel="alternate" type="application/rss+xml" title="<?php $plxShow->lang('COMMENTS_RSS_FEEDS') ?>" href="<?php $plxShow->urlRewrite('feed.php?rss/commentaires') ?>" />
<link rel="shortcut icon" href="<?php $plxShow->template() ?>/favicon.ico" />
<!-- DEBUT CLIC DROIT INTERDIT -->
<script type="text/javascript" language="JavaScript">
<!--
// http://www.jejavascript.net/
function noclic(clic) {
var mess="Copie interdite - Copyright © Michel VERAY"; //changer le message
if (navigator.appName == 'Netscape' && clic.which==3) {
alert(mess);
}
else
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
alert(mess);
}}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown = noclic;
//--></script>
<!-- FIN CLIC DROIT INTERDIT -->
</head>
<body id="top" class="page mode-<?php $plxShow->mode(true) ?>">
<nav class="nav">
<div class="container">
<div class="responsive-menu">
<label for="menu"></label>
<input type="checkbox" id="menu">
<ul class="menu">
<?php $plxShow->staticList($plxShow->getLang('HOME'),'<li class="#static_class #static_status" id="#static_id"><a href="#static_url" title="#static_name">#static_name</a></li>'); ?>
<?php $plxShow->pageBlog('<li class="#page_class #page_status" id="#page_id"><a href="#page_url" title="#page_name">#page_name</a></li>'); ?>
</ul>
</div>
</div>
</nav>
<header class="header">
<div class="container">
<a href="/"><img src="/data/medias/logo-les4arts-fond-blanc-petit.jpg" width="220" height="180" /></a>
<!--<h1 class="no-margin heading-small"><?php $plxShow->mainTitle('link'); ?></h1>
<h2 class="h5 no-margin"><?php $plxShow->subTitle(); ?></h2>-->
</div>
</header>