1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pluxml_ynh.git synced 2024-09-03 20:16:02 +02:00
pluxml_ynh/sources/themes/defaut/header.php

39 lines
1.9 KiB
PHP
Raw Normal View History

2014-11-12 22:01:48 +01:00
<?php if (!defined('PLX_ROOT')) exit; ?>
<!DOCTYPE html>
<html lang="<?php $plxShow->defaultLang() ?>">
<head>
2015-08-17 21:12:54 +02:00
<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') ?>" />
2014-11-12 22:01:48 +01:00
</head>
<body id="top">
2015-08-17 21:12:54 +02:00
<div class="container">
2014-11-12 22:01:48 +01:00
2015-08-17 21:12:54 +02:00
<header class="header sml-text-center med-text-left" role="banner">
<h1 class="no-margin"><?php $plxShow->mainTitle('link'); ?></h1>
<h2 class="h5 no-margin"><?php $plxShow->subTitle(); ?></h2>
</header>
2014-11-12 22:01:48 +01:00
2015-08-17 21:12:54 +02:00
<nav class="nav" role="navigation">
<div class="responsive-menu">
<label for="menu"><?php $plxShow->lang('MENU'); ?></label>
<input type="checkbox" id="menu">
<ul class="menu expanded">
<?php $plxShow->staticList($plxShow->getLang('HOME'),'<li class="#static_status" id="#static_id"><a href="#static_url" title="#static_name">#static_name</a></li>'); ?>
<?php $plxShow->pageBlog('<li id="#page_id"><a class="#page_status" href="#page_url" title="#page_name">#page_name</a></li>'); ?>
</ul>
</div>
2014-11-12 22:01:48 +01:00
</nav>