49 lines
1.9 KiB
PHP
49 lines
1.9 KiB
PHP
|
<?php if (!defined('PLX_ROOT')) exit; ?>
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="<?php $plxShow->defaultLang() ?>">
|
||
|
<head>
|
||
|
<!-- Métadonnées -->
|
||
|
<meta charset="<?php $plxShow->charset('min'); ?>">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0">
|
||
|
<title><?php $plxShow->mainTitle(); ?></title>
|
||
|
<?php $plxShow->meta('description') ?>
|
||
|
<?php $plxShow->meta('keywords') ?>
|
||
|
<?php $plxShow->meta('author') ?>
|
||
|
|
||
|
<!-- Favicon -->
|
||
|
<link rel="icon" href="<?php $plxShow->template(); ?>/img/favicon.png" />
|
||
|
|
||
|
<!-- Framework CSS utilisés -->
|
||
|
<link href="<?php $plxShow->template(); ?>/css/bootstrap.min.css" rel="stylesheet" media="screen"/>
|
||
|
<link href="<?php $plxShow->template(); ?>/css/fork-awesome.min.css" rel="stylesheet" media="screen"/>
|
||
|
<link href="<?php $plxShow->template(); ?>/css/clear-typography.css" rel="stylesheet" media="screen"/>
|
||
|
<link href="<?php $plxShow->template(); ?>/css/palette.css" rel="stylesheet" media="screen"/>
|
||
|
|
||
|
<!-- Thème du style -->
|
||
|
|
||
|
<link href="<?php $plxShow->template(); ?>/css/style.css" rel="stylesheet" media="screen"/>
|
||
|
|
||
|
<?php $plxShow->templateCss() ?>
|
||
|
<?php $plxShow->pluginsCss() ?>
|
||
|
|
||
|
<!-- Fichier RSS -->
|
||
|
<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') ?>" />
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div id="wrapper">
|
||
|
|
||
|
|
||
|
|
||
|
<?php include(dirname(__FILE__).'/navbar.php'); ?>
|
||
|
|
||
|
<header class="container">
|
||
|
<div class="row">
|
||
|
<h1 class="site-logo" style="margin:auto;text-align:center;"><img src="<?php $plxShow->template(); ?>/images/logo.png" alt="Kazhnuz" /></h1>
|
||
|
</div>
|
||
|
</header>
|
||
|
|
||
|
|