initial import
This commit is contained in:
commit
950827ce80
37 changed files with 3321 additions and 0 deletions
73
archives.php
Normal file
73
archives.php
Normal file
|
@ -0,0 +1,73 @@
|
|||
<?php include(dirname(__FILE__).'/header.php'); ?>
|
||||
|
||||
<main class="main">
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="grid">
|
||||
|
||||
<div class="content col sml-12 med-8">
|
||||
|
||||
<ul class="repertory menu breadcrumb">
|
||||
<li><a href="<?php $plxShow->racine() ?>"><?php $plxShow->lang('HOME'); ?></a></li>
|
||||
<li><?php echo plxDate::formatDate($plxShow->plxMotor->cible, $plxShow->lang('ARCHIVES').' #month #num_year(4)') ?></li>
|
||||
</ul>
|
||||
|
||||
<?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
|
||||
|
||||
<article class="article" id="post-<?php echo $plxShow->artId(); ?>">
|
||||
|
||||
<header>
|
||||
<h2>
|
||||
<?php $plxShow->artTitle('link'); ?>
|
||||
</h2>
|
||||
<small>
|
||||
<span class="written-by">
|
||||
<?php $plxShow->lang('WRITTEN_BY'); ?> <?php $plxShow->artAuthor() ?>
|
||||
</span>
|
||||
<time class="art-date" datetime="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>">
|
||||
<?php $plxShow->artDate('#num_day #month #num_year(4)'); ?>
|
||||
</time>
|
||||
<span class="art-nb-com">
|
||||
<?php $plxShow->artNbCom(); ?>
|
||||
</span>
|
||||
</small>
|
||||
</header>
|
||||
|
||||
<?php $plxShow->artThumbnail(); ?>
|
||||
<?php $plxShow->artChapo(); ?>
|
||||
|
||||
<footer>
|
||||
<small>
|
||||
<span class="classified-in">
|
||||
<?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat() ?>
|
||||
</span>
|
||||
<span class="tags">
|
||||
<?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags() ?>
|
||||
</span>
|
||||
</small>
|
||||
</footer>
|
||||
|
||||
</article>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<nav class="pagination text-center">
|
||||
<?php $plxShow->pagination(); ?>
|
||||
</nav>
|
||||
|
||||
<span>
|
||||
<?php $plxShow->artFeed('rss',$plxShow->catId()); ?>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
<?php include(dirname(__FILE__).'/sidebar.php'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include(dirname(__FILE__).'/footer.php'); ?>
|
58
article-full-width.php
Normal file
58
article-full-width.php
Normal file
|
@ -0,0 +1,58 @@
|
|||
<?php include(dirname(__FILE__) . '/header.php'); ?>
|
||||
|
||||
<main class="main">
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="grid">
|
||||
|
||||
<div class="content col sml-12">
|
||||
|
||||
<article class="article" id="post-<?php echo $plxShow->artId(); ?>">
|
||||
|
||||
<header>
|
||||
<h2>
|
||||
<?php $plxShow->artTitle(); ?>
|
||||
</h2>
|
||||
<small>
|
||||
<span class="written-by">
|
||||
<?php $plxShow->lang('WRITTEN_BY'); ?> <?php $plxShow->artAuthor() ?>
|
||||
</span>
|
||||
<time class="art-date" datetime="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>">
|
||||
<?php $plxShow->artDate('#num_day #month #num_year(4)'); ?>
|
||||
</time>
|
||||
<span class="art-nb-com">
|
||||
<a href="<?php $plxShow->artUrl(); ?>#comments" title="<?php $plxShow->artNbCom(); ?>"><?php $plxShow->artNbCom(); ?></a>
|
||||
</span>
|
||||
</small>
|
||||
</header>
|
||||
|
||||
<?php $plxShow->artThumbnail(); ?>
|
||||
<?php $plxShow->artContent(); ?>
|
||||
|
||||
<footer>
|
||||
<small>
|
||||
<span class="classified-in">
|
||||
<?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat() ?>
|
||||
</span>
|
||||
<span class="tags">
|
||||
<?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags() ?>
|
||||
</span>
|
||||
</small>
|
||||
</footer>
|
||||
|
||||
</article>
|
||||
|
||||
<?php $plxShow->artAuthorInfos('<div class="author-infos">#art_authorinfos</div>'); ?>
|
||||
|
||||
<?php include(dirname(__FILE__).'/commentaires.php'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include(dirname(__FILE__).'/footer.php'); ?>
|
60
article.php
Normal file
60
article.php
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?php include(dirname(__FILE__).'/header.php'); ?>
|
||||
|
||||
<main class="main">
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="grid">
|
||||
|
||||
<div class="content col sml-12 med-8">
|
||||
|
||||
<article class="article" id="post-<?php echo $plxShow->artId(); ?>">
|
||||
|
||||
<header>
|
||||
<h2>
|
||||
<?php $plxShow->artTitle(); ?>
|
||||
</h2>
|
||||
<small>
|
||||
<span class="written-by">
|
||||
<?php $plxShow->lang('WRITTEN_BY'); ?> <?php $plxShow->artAuthor() ?>
|
||||
</span>
|
||||
<time class="art-date" datetime="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>">
|
||||
<?php $plxShow->artDate('#num_day #month #num_year(4)'); ?>
|
||||
</time>
|
||||
<span class="art-nb-com">
|
||||
<a href="<?php $plxShow->artUrl(); ?>#comments" title="<?php $plxShow->artNbCom(); ?>"><?php $plxShow->artNbCom(); ?></a>
|
||||
</span>
|
||||
</small>
|
||||
</header>
|
||||
|
||||
<?php $plxShow->artThumbnail(); ?>
|
||||
<?php $plxShow->artContent(); ?>
|
||||
|
||||
<footer>
|
||||
<small>
|
||||
<span class="classified-in">
|
||||
<?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat() ?>
|
||||
</span>
|
||||
<span class="tags">
|
||||
<?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags() ?>
|
||||
</span>
|
||||
</small>
|
||||
</footer>
|
||||
|
||||
</article>
|
||||
|
||||
<?php $plxShow->artAuthorInfos('<div class="author-infos">#art_authorinfos</div>'); ?>
|
||||
|
||||
<?php include(dirname(__FILE__).'/commentaires.php'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
<?php include(dirname(__FILE__).'/sidebar.php'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include(dirname(__FILE__).'/footer.php'); ?>
|
73
categorie-full-width.php
Normal file
73
categorie-full-width.php
Normal file
|
@ -0,0 +1,73 @@
|
|||
<?php include(dirname(__FILE__).'/header.php'); ?>
|
||||
|
||||
<main class="main" role="main">
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="grid">
|
||||
|
||||
<div class="content col sml-12">
|
||||
|
||||
<ul class="repertory menu breadcrumb">
|
||||
<li><a href="<?php $plxShow->racine() ?>"><?php $plxShow->lang('HOME'); ?></a></li>
|
||||
<li><?php $plxShow->catName(); ?></li>
|
||||
</ul>
|
||||
|
||||
<p><?php $plxShow->catDescription('#cat_description'); ?></p>
|
||||
|
||||
<?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
|
||||
|
||||
<article class="article" id="post-<?php echo $plxShow->artId(); ?>">
|
||||
|
||||
<header>
|
||||
<h2>
|
||||
<?php $plxShow->artTitle('link'); ?>
|
||||
</h2>
|
||||
<small>
|
||||
<span class="written-by">
|
||||
<?php $plxShow->lang('WRITTEN_BY'); ?> <?php $plxShow->artAuthor() ?>
|
||||
</span>
|
||||
<time class="art-date" datetime="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>">
|
||||
<?php $plxShow->artDate('#num_day #month #num_year(4)'); ?>
|
||||
</time>
|
||||
<span class="art-nb-com">
|
||||
<?php $plxShow->artNbCom(); ?>
|
||||
</span>
|
||||
</small>
|
||||
</header>
|
||||
|
||||
<?php $plxShow->artThumbnail(); ?>
|
||||
<?php $plxShow->artChapo(); ?>
|
||||
|
||||
<footer>
|
||||
<small>
|
||||
<span class="classified-in">
|
||||
<?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat() ?>
|
||||
</span>
|
||||
<span class="tags">
|
||||
<?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags() ?>
|
||||
</span>
|
||||
</small>
|
||||
</footer>
|
||||
|
||||
</article>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<nav class="pagination text-center">
|
||||
<?php $plxShow->pagination(); ?>
|
||||
</nav>
|
||||
|
||||
<span>
|
||||
<?php $plxShow->artFeed('rss',$plxShow->catId()); ?>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include(dirname(__FILE__).'/footer.php'); ?>
|
75
categorie.php
Normal file
75
categorie.php
Normal file
|
@ -0,0 +1,75 @@
|
|||
<?php include(dirname(__FILE__).'/header.php'); ?>
|
||||
|
||||
<main class="main">
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="grid">
|
||||
|
||||
<div class="content col sml-12 med-8">
|
||||
|
||||
<ul class="repertory menu breadcrumb">
|
||||
<li><a href="<?php $plxShow->racine() ?>"><?php $plxShow->lang('HOME'); ?></a></li>
|
||||
<li><?php $plxShow->catName(); ?></li>
|
||||
</ul>
|
||||
|
||||
<p><?php $plxShow->catDescription('#cat_description'); ?></p>
|
||||
|
||||
<?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
|
||||
|
||||
<article class="article" id="post-<?php echo $plxShow->artId(); ?>">
|
||||
|
||||
<header>
|
||||
<h2>
|
||||
<?php $plxShow->artTitle('link'); ?>
|
||||
</h2>
|
||||
<small>
|
||||
<span class="written-by">
|
||||
<?php $plxShow->lang('WRITTEN_BY'); ?> <?php $plxShow->artAuthor() ?>
|
||||
</span>
|
||||
<time class="art-date" datetime="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>">
|
||||
<?php $plxShow->artDate('#num_day #month #num_year(4)'); ?>
|
||||
</time>
|
||||
<span class="art-nb-com">
|
||||
<?php $plxShow->artNbCom(); ?>
|
||||
</span>
|
||||
</small>
|
||||
</header>
|
||||
|
||||
<?php $plxShow->artThumbnail(); ?>
|
||||
<?php $plxShow->artChapo(); ?>
|
||||
|
||||
<footer>
|
||||
<small>
|
||||
<span class="classified-in">
|
||||
<?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat() ?>
|
||||
</span>
|
||||
<span class="tags">
|
||||
<?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags() ?>
|
||||
</span>
|
||||
</small>
|
||||
</footer>
|
||||
|
||||
</article>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<nav class="pagination text-center">
|
||||
<?php $plxShow->pagination(); ?>
|
||||
</nav>
|
||||
|
||||
<span>
|
||||
<?php $plxShow->artFeed('rss',$plxShow->catId()); ?>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
<?php //include(dirname(__FILE__).'/sidebar.php'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include(dirname(__FILE__).'/footer.php'); ?>
|
123
commentaires.php
Normal file
123
commentaires.php
Normal file
|
@ -0,0 +1,123 @@
|
|||
<?php if(!defined('PLX_ROOT')) exit; ?>
|
||||
|
||||
<?php if($plxShow->plxMotor->plxRecord_coms): ?>
|
||||
|
||||
<h3 id="comments">
|
||||
<?php echo $plxShow->artNbCom(); ?>
|
||||
</h3>
|
||||
|
||||
<?php while($plxShow->plxMotor->plxRecord_coms->loop()): # On boucle sur les commentaires ?>
|
||||
|
||||
<div id="<?php $plxShow->comId(); ?>" class="comment <?php $plxShow->comLevel(); ?>">
|
||||
|
||||
<div id="com-<?php $plxShow->comIndex(); ?>">
|
||||
|
||||
<small>
|
||||
<a class="nbcom" href="<?php $plxShow->ComUrl(); ?>" title="#<?php echo $plxShow->plxMotor->plxRecord_coms->i+1 ?>">#<?php echo $plxShow->plxMotor->plxRecord_coms->i+1 ?></a>
|
||||
<time datetime="<?php $plxShow->comDate('#num_year(4)-#num_month-#num_day #hour:#minute'); ?>"><?php $plxShow->comDate('#day #num_day #month #num_year(4) - #hour:#minute'); ?></time> -
|
||||
<?php $plxShow->comAuthor('link'); ?>
|
||||
<?php $plxShow->lang('SAID'); ?> :
|
||||
</small>
|
||||
|
||||
<blockquote>
|
||||
<p class="content_com type-<?php $plxShow->comType(); ?>"><?php $plxShow->comContent(); ?></p>
|
||||
</blockquote>
|
||||
|
||||
</div>
|
||||
|
||||
<?php if($plxShow->plxMotor->plxRecord_arts->f('allow_com') AND $plxShow->plxMotor->aConf['allow_com']): ?>
|
||||
<a rel="nofollow" href="<?php $plxShow->artUrl(); ?>#form" onclick="replyCom('<?php $plxShow->comIndex() ?>')"><?php $plxShow->lang('REPLY'); ?></a>
|
||||
<?php endif; ?>
|
||||
|
||||
</div>
|
||||
|
||||
<?php endwhile; # Fin de la boucle sur les commentaires ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<?php if($plxShow->plxMotor->plxRecord_arts->f('allow_com') AND $plxShow->plxMotor->aConf['allow_com']): ?>
|
||||
|
||||
<h3>
|
||||
<?php $plxShow->lang('WRITE_A_COMMENT') ?>
|
||||
</h3>
|
||||
|
||||
<form id="form" action="<?php $plxShow->artUrl(); ?>#form" method="post">
|
||||
|
||||
<fieldset>
|
||||
|
||||
<div class="grid">
|
||||
<div class="col sml-12">
|
||||
<label for="id_name"><?php $plxShow->lang('NAME') ?> :</label>
|
||||
<input id="id_name" name="name" type="text" size="20" value="<?php $plxShow->comGet('name',''); ?>" maxlength="30" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid">
|
||||
<div class="col sml-12 lrg-6">
|
||||
<label for="id_mail"><?php $plxShow->lang('EMAIL') ?> :</label>
|
||||
<input id="id_mail" name="mail" type="text" size="20" value="<?php $plxShow->comGet('mail',''); ?>" />
|
||||
</div>
|
||||
<div class="col sml-12 lrg-6">
|
||||
<label for="id_site"><?php $plxShow->lang('WEBSITE') ?> :</label>
|
||||
<input id="id_site" name="site" type="text" size="20" value="<?php $plxShow->comGet('site',''); ?>" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid">
|
||||
<div class="col sml-12">
|
||||
<div id="id_answer"></div>
|
||||
<label for="id_content" class="lab_com"><?php $plxShow->lang('COMMENT') ?> :</label>
|
||||
<textarea id="id_content" name="content" cols="35" rows="6"><?php $plxShow->comGet('content',''); ?></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php $plxShow->comMessage('<p id="com_message" class="text-red"><strong>#com_message</strong></p>'); ?>
|
||||
|
||||
<?php if($plxShow->plxMotor->aConf['capcha']): ?>
|
||||
|
||||
<div class="grid">
|
||||
<div class="col sml-12">
|
||||
<label for="id_rep"><strong><?php echo $plxShow->lang('ANTISPAM_WARNING') ?></strong></label>
|
||||
<?php $plxShow->capchaQ(); ?>
|
||||
<input id="id_rep" name="rep" type="text" size="2" maxlength="1" style="width: auto; display: inline;" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="grid">
|
||||
<div class="col sml-12">
|
||||
<input type="hidden" id="id_parent" name="parent" value="<?php $plxShow->comGet('parent',''); ?>" />
|
||||
<input class="red" type="submit" value="<?php $plxShow->lang('SEND') ?>" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</fieldset>
|
||||
|
||||
</form>
|
||||
|
||||
<script>
|
||||
function replyCom(idCom) {
|
||||
document.getElementById('id_answer').innerHTML='<?php $plxShow->lang('REPLY_TO'); ?> :';
|
||||
document.getElementById('id_answer').innerHTML+=document.getElementById('com-'+idCom).innerHTML;
|
||||
document.getElementById('id_answer').innerHTML+='<a rel="nofollow" href="<?php $plxShow->artUrl(); ?>#form" onclick="cancelCom()"><?php $plxShow->lang('CANCEL'); ?></a>';
|
||||
document.getElementById('id_answer').style.display='inline-block';
|
||||
document.getElementById('id_parent').value=idCom;
|
||||
document.getElementById('id_content').focus();
|
||||
}
|
||||
function cancelCom() {
|
||||
document.getElementById('id_answer').style.display='none';
|
||||
document.getElementById('id_parent').value='';
|
||||
document.getElementById('com_message').innerHTML='';
|
||||
}
|
||||
var parent = document.getElementById('id_parent').value;
|
||||
if(parent!='') { replyCom(parent) }
|
||||
</script>
|
||||
|
||||
<?php else: ?>
|
||||
|
||||
<p>
|
||||
<?php $plxShow->lang('COMMENTS_CLOSED') ?>.
|
||||
</p>
|
||||
|
||||
<?php endif; # Fin du if sur l'autorisation des commentaires ?>
|
||||
|
||||
<p><?php $plxShow->comFeed('rss',$plxShow->artId()); ?></p>
|
1504
css/plucss.css
Normal file
1504
css/plucss.css
Normal file
File diff suppressed because it is too large
Load diff
370
css/theme.css
Normal file
370
css/theme.css
Normal file
|
@ -0,0 +1,370 @@
|
|||
/*
|
||||
# ------------------ BEGIN LICENSE BLOCK ------------------
|
||||
#
|
||||
# This file is part of PluXml : http://www.pluxml.org
|
||||
#
|
||||
# Package: theme.css
|
||||
# Copyright (c) 2017 PluXml
|
||||
# Authors Jos, Stephane F.
|
||||
# Licensed under the GPL license.
|
||||
# See http://www.gnu.org/licenses/gpl.html
|
||||
#
|
||||
# ------------------- END LICENSE BLOCK -------------------
|
||||
*/
|
||||
|
||||
/* ----- Menu ----- */
|
||||
|
||||
.nav {
|
||||
background-color: #fff;
|
||||
height: 4rem;
|
||||
text-align: left;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
.nav ul {
|
||||
line-height: 3rem;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.nav {
|
||||
height: auto;
|
||||
max-height: 200px;
|
||||
overflow-y: auto;
|
||||
text-align: left;
|
||||
margin-top: 0;
|
||||
}
|
||||
.nav>.container {
|
||||
padding: 0;
|
||||
}
|
||||
.responsive-menu label {
|
||||
background-color: #fff;
|
||||
color: #333;
|
||||
font-size: 3.5rem;
|
||||
margin: .75rem;
|
||||
text-align: right;
|
||||
}
|
||||
.responsive-menu label:before {
|
||||
content: '\039e';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
li a.active {
|
||||
color: #e42929;
|
||||
}
|
||||
|
||||
/* ---------- Header ---------- */
|
||||
|
||||
body {
|
||||
background-color: #fff;
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
|
||||
@media (min-width: 64rem) {
|
||||
.container {
|
||||
padding-left: 10rem;
|
||||
padding-right: 10rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* COULEUR DU BANDEAU */
|
||||
/* voir http://www.letoileauxsecrets.fr/couleurs/couleurs-bordeaux.html
|
||||
pour les codes couleur possibles */
|
||||
.header {
|
||||
background-color: #8B0000;
|
||||
color: #fff;
|
||||
padding-bottom: 6rem;
|
||||
padding-top: 6rem;
|
||||
text-align: center;
|
||||
}
|
||||
.header a {
|
||||
color: #000;
|
||||
}
|
||||
.header a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* ---------- Main ---------- */
|
||||
|
||||
.main {
|
||||
background-color: #fff;
|
||||
padding-bottom: 6rem;
|
||||
}
|
||||
.repertory {
|
||||
margin-top: 4rem;
|
||||
}
|
||||
.pagination {
|
||||
margin: 3rem 0 3rem 0;
|
||||
}
|
||||
.pagination a {
|
||||
/*background-color: #258fd6;*/
|
||||
background-color: #000000;
|
||||
border-radius: .3rem;
|
||||
color: #fff;
|
||||
padding: .9rem .7rem;
|
||||
transition-duration: .2s;
|
||||
}
|
||||
.pagination a:hover {
|
||||
background-color: #3a6c96;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
.pagination span:first-letter,
|
||||
.pagination a:first-letter {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.p_first,
|
||||
.p_prev,
|
||||
.p_current,
|
||||
.p_next,
|
||||
.p_last {
|
||||
display: inline-block;
|
||||
}
|
||||
.article header h2 a {
|
||||
color: #333;
|
||||
}
|
||||
.article header h2 a:hover {
|
||||
color: #258fd6;
|
||||
text-decoration: none;
|
||||
}
|
||||
.article footer small,
|
||||
.article header small,
|
||||
.comment small {
|
||||
color: #666;
|
||||
}
|
||||
.article header span:before,
|
||||
.article header time:before,
|
||||
.article footer span:before {
|
||||
padding-left: 1.5rem;
|
||||
padding-right: .3rem;
|
||||
}
|
||||
.article .written-by:after {
|
||||
content: '|';
|
||||
padding-left: 0;
|
||||
}
|
||||
.article .art-date:after {
|
||||
content: '|';
|
||||
}
|
||||
.article .classified-in:after {
|
||||
content: '|';
|
||||
padding-left: 0;
|
||||
}
|
||||
.article img.art_thumbnail {
|
||||
padding: 15px 0 10px 0;
|
||||
}
|
||||
.page.mode-article .article footer {
|
||||
border-top: 1px solid #dedede;
|
||||
border-bottom: 1px solid #dedede;
|
||||
}
|
||||
.comment {
|
||||
background-image: url('../img/user.png');
|
||||
background-repeat: no-repeat;
|
||||
margin-bottom: 2.5rem;
|
||||
padding-left: 6rem;
|
||||
}
|
||||
.comment blockquote {
|
||||
margin: 0;
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
.type-admin {
|
||||
background-color: #F0F8FF;
|
||||
padding: .2rem .5rem;
|
||||
}
|
||||
.nbcom {
|
||||
/*background-color: #258fd6;*/
|
||||
background-color: #6D071A;
|
||||
border-radius: .3rem;
|
||||
color: #fff;
|
||||
padding: .4rem .6rem;
|
||||
}
|
||||
.nbcom:hover {
|
||||
background-color: #3a6c96;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
.level-0 {
|
||||
margin-left: 0;
|
||||
}
|
||||
.level-1 {
|
||||
margin-left: 5rem;
|
||||
}
|
||||
.level-2 {
|
||||
margin-left: 10rem
|
||||
}
|
||||
.level-3 {
|
||||
margin-left: 15rem;
|
||||
}
|
||||
.level-4 {
|
||||
margin-left: 20rem;
|
||||
}
|
||||
.level-5,
|
||||
.level-max {
|
||||
margin-left: 25rem;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.comment { background-image: none; padding-left: 0; }
|
||||
.level-1 { margin-left: 1rem; }
|
||||
.level-2 { margin-left: 2rem; }
|
||||
.level-3 { margin-left: 3rem; }
|
||||
.level-4 { margin-left: 4rem; }
|
||||
.level-5, .level-max { margin-left: 5rem; }
|
||||
}
|
||||
#id_answer {
|
||||
margin-bottom: 1.5rem;
|
||||
padding:1.5rem;
|
||||
border:1px solid #eee;
|
||||
width:100%;
|
||||
background:#fafafa;
|
||||
display:none;
|
||||
}
|
||||
.capcha-letter,
|
||||
.capcha-word {
|
||||
font-weight: bold;
|
||||
}
|
||||
.capcha-word {
|
||||
background-color: #ddd;
|
||||
border-radius: .3rem;
|
||||
letter-spacing: .5rem;
|
||||
padding: .9rem .7rem;
|
||||
transition-duration: .2s;
|
||||
}
|
||||
.capcha-word:hover {
|
||||
background-color: #666;
|
||||
color: #fff;
|
||||
transition-duration: .2s;
|
||||
}
|
||||
.aside {
|
||||
padding: 0 2rem 0 2rem;
|
||||
}
|
||||
.aside h3 {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
margin-top: 5rem;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.aside ul {
|
||||
margin: 0;
|
||||
}
|
||||
.aside ul.tag-list {
|
||||
list-style-type: none;
|
||||
padding-left: 0;
|
||||
}
|
||||
.aside ul.tag-list li {
|
||||
display: inline-block;
|
||||
margin-right: 1.5rem;
|
||||
}
|
||||
.aside ul.tag-list li.tag-size-1 a {
|
||||
font-size: 1rem;
|
||||
}
|
||||
.aside ul.tag-list li.tag-size-2 a {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
.aside ul.tag-list li.tag-size-3 a {
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
.aside ul.tag-list li.tag-size-4 a {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
.aside ul.tag-list li.tag-size-5 a {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
.aside ul.tag-list li.tag-size-6 a {
|
||||
font-size: 2rem;
|
||||
}
|
||||
.aside ul.tag-list li.tag-size-7 a {
|
||||
font-size: 2.2rem;
|
||||
}
|
||||
.aside ul.tag-list li.tag-size-8 a {
|
||||
font-size: 2.4rem;
|
||||
}
|
||||
.aside ul.tag-list li.tag-size-9 a {
|
||||
font-size: 2.6rem
|
||||
}
|
||||
.aside ul.tag-list li.tag-size-10 a {
|
||||
font-size: 2.8rem;
|
||||
}
|
||||
.aside ul.tag-list li.tag-size-max a {
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
/* ---------- Footer ---------- */
|
||||
|
||||
.footer {
|
||||
background: #fff;
|
||||
color: #666;
|
||||
padding: 6rem 0;
|
||||
text-align: center;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
.footer p {
|
||||
margin: 0;
|
||||
}
|
||||
.footer a,
|
||||
.footer li.active a {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/* ---------- ---------- */
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.header,
|
||||
.footer {
|
||||
padding: 2rem 0;
|
||||
}
|
||||
.aside {
|
||||
padding-left: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* affichage groupe des pages statiques */
|
||||
/* sous forme de menus déroulants */
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.menu > li ul {
|
||||
position: relative !important;
|
||||
}
|
||||
.menu > li ul li:hover {
|
||||
background-color: #fff;
|
||||
}
|
||||
.menu > li ul li:hover a{
|
||||
text-decoration: underline;
|
||||
}
|
||||
.responsive-menu ul li.active a,
|
||||
.responsive-menu ul li.active:hover {
|
||||
background-color: #fff;
|
||||
color: #000;
|
||||
}
|
||||
}
|
||||
.menu > li ul {
|
||||
display: none;
|
||||
position: absolute;
|
||||
padding: 0;
|
||||
line-height: 2.8rem;
|
||||
}
|
||||
.menu > li:hover ul {
|
||||
display: block;
|
||||
}
|
||||
.menu ul li {
|
||||
display: block;
|
||||
margin: 0;
|
||||
padding: 0 1rem;
|
||||
background-color: #fff;
|
||||
}
|
||||
/* MENU AU DESSUS DU TABLEAU - Liens déjà visités */
|
||||
.static.group.active,
|
||||
.static.menu.active a {
|
||||
/*color: #e42929;*/
|
||||
color: #222222;
|
||||
font-weight: bold;
|
||||
font-size: 110%;
|
||||
}
|
||||
/* MENU AU DESSUS DU TABLEAU */
|
||||
.static.group.noactive,
|
||||
.static.menu.noactive a {
|
||||
/*color: #258fd6;*/
|
||||
color: #000000;
|
||||
font-weight: bold;
|
||||
font-size: 110%;
|
||||
}
|
||||
.menu span::before {
|
||||
content: '\25bc';
|
||||
}
|
36
erreur.php
Normal file
36
erreur.php
Normal file
|
@ -0,0 +1,36 @@
|
|||
<?php include(dirname(__FILE__).'/header.php'); ?>
|
||||
|
||||
<main class="main">
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="grid">
|
||||
|
||||
<div class="content col sml-12 med-8">
|
||||
|
||||
<article class="article">
|
||||
|
||||
<header>
|
||||
<h2>
|
||||
<?php $plxShow->lang('ERROR'); ?>
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<p>
|
||||
<?php $plxShow->erreurMessage(); ?>
|
||||
</p>
|
||||
|
||||
</article>
|
||||
|
||||
</div>
|
||||
|
||||
<?php include(dirname(__FILE__).'/sidebar.php'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include(dirname(__FILE__).'/footer.php'); ?>
|
||||
|
BIN
favicon.ico
Normal file
BIN
favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.7 KiB |
24
footer.php
Normal file
24
footer.php
Normal file
|
@ -0,0 +1,24 @@
|
|||
<?php if (!defined('PLX_ROOT')) exit; ?>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<p>
|
||||
<?php $plxShow->mainTitle('link'); ?> - <?php $plxShow->subTitle(); ?> © 2017
|
||||
</p>
|
||||
<p>
|
||||
<?php $plxShow->lang('POWERED_BY') ?> <a href="http://www.pluxml.org" title="<?php $plxShow->lang('PLUXML_DESCRIPTION') ?>">PluXml</a>
|
||||
<?php $plxShow->lang('IN') ?> <?php $plxShow->chrono(); ?>
|
||||
<?php $plxShow->httpEncoding() ?> -
|
||||
<a rel="nofollow" href="<?php $plxShow->urlRewrite('core/admin/'); ?>" title="<?php $plxShow->lang('ADMINISTRATION') ?>"><?php $plxShow->lang('ADMINISTRATION') ?></a>
|
||||
</p>
|
||||
<ul class="menu">
|
||||
<li><a href="<?php $plxShow->urlRewrite('feed.php?rss') ?>" title="<?php $plxShow->lang('ARTICLES_RSS_FEEDS'); ?>"><?php $plxShow->lang('ARTICLES'); ?></a></li>
|
||||
<li><a href="<?php $plxShow->urlRewrite('feed.php?rss/commentaires'); ?>" title="<?php $plxShow->lang('COMMENTS_RSS_FEEDS') ?>"><?php $plxShow->lang('COMMENTS'); ?></a></li>
|
||||
<li><a href="<?php $plxShow->urlRewrite('#top') ?>" title="<?php $plxShow->lang('GOTO_TOP') ?>"><?php $plxShow->lang('TOP') ?></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
42
header.php
Normal file
42
header.php
Normal file
|
@ -0,0 +1,42 @@
|
|||
<?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" />
|
||||
</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="https://4arts.tourmentine.com/data/medias/logo-les4arts-fond-blanc-petit.jpg" width="200" height="165" /></a>
|
||||
<!--<h1 class="no-margin heading-small"><?php $plxShow->mainTitle('link'); ?></h1>
|
||||
<h2 class="h5 no-margin"><?php $plxShow->subTitle(); ?></h2>-->
|
||||
</div>
|
||||
</header>
|
70
home.php
Normal file
70
home.php
Normal file
|
@ -0,0 +1,70 @@
|
|||
<?php include(dirname(__FILE__).'/header.php'); ?>
|
||||
|
||||
<main class="main">
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="grid">
|
||||
|
||||
<div class="content col sml-12">
|
||||
|
||||
<?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
|
||||
|
||||
<article class="article" id="post-<?php echo $plxShow->artId(); ?>">
|
||||
|
||||
<header>
|
||||
<h2>
|
||||
<?php $plxShow->artTitle('link'); ?>
|
||||
</h2>
|
||||
<small>
|
||||
<span class="written-by">
|
||||
<?php $plxShow->lang('WRITTEN_BY'); ?> <?php $plxShow->artAuthor() ?>
|
||||
</span>
|
||||
<time class="art-date" datetime="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>">
|
||||
<?php $plxShow->artDate('#num_day #month #num_year(4)'); ?>
|
||||
</time>
|
||||
<span class="art-nb-com">
|
||||
<?php $plxShow->artNbCom(); ?>
|
||||
</span>
|
||||
</small>
|
||||
</header>
|
||||
|
||||
|
||||
<?php $plxShow->artThumbnail(); ?>
|
||||
<?php $plxShow->artChapo(); ?>
|
||||
|
||||
|
||||
<footer>
|
||||
<small>
|
||||
<span class="classified-in">
|
||||
<?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat() ?>
|
||||
</span>
|
||||
<span class="tags">
|
||||
<?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags() ?>
|
||||
</span>
|
||||
</small>
|
||||
</footer>
|
||||
|
||||
</article>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<nav class="pagination text-center">
|
||||
<?php $plxShow->pagination(); ?>
|
||||
</nav>
|
||||
|
||||
<span>
|
||||
<?php $plxShow->artFeed('rss',$plxShow->catId()); ?>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
<?php //include(dirname(__FILE__).'/sidebar.php'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include(dirname(__FILE__).'/footer.php'); ?>
|
BIN
img/favicon.png
Normal file
BIN
img/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 356 B |
0
img/index.html
Normal file
0
img/index.html
Normal file
BIN
img/user.png
Normal file
BIN
img/user.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 194 B |
0
index.html
Normal file
0
index.html
Normal file
9
infos.xml
Normal file
9
infos.xml
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document>
|
||||
<title><![CDATA[4arts]]></title>
|
||||
<author><![CDATA[PluXml&4'Arts]]></author>
|
||||
<version>5.6</version>
|
||||
<date>10/03/2018</date>
|
||||
<site>http://les-4-arts.com</site>
|
||||
<description><![CDATA[Thème4'Arts]]></description>
|
||||
</document>
|
56
lang/de.php
Normal file
56
lang/de.php
Normal file
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
|
||||
$LANG = array(
|
||||
|
||||
#header.php
|
||||
'MENU' => 'Menü',
|
||||
'HOME' => 'Startseite',
|
||||
'GOTO_CONTENT' => 'Zum Inhalt',
|
||||
'GOTO_MENU' => 'Zum Menü',
|
||||
'COMMENTS_RSS_FEEDS' => 'Kommentare als Feed',
|
||||
'COMMENTS' => 'Kommentare',
|
||||
'ARTICLES_RSS_FEEDS' => 'Artikel-Feed (RSS)',
|
||||
'ARTICLES' => 'Artikel',
|
||||
|
||||
# sidebar.php
|
||||
'CATEGORIES' => 'Kategorien',
|
||||
'LATEST_ARTICLES' => 'Letzte Artikel',
|
||||
'LATEST_COMMENTS' => 'Letzte Kommentare',
|
||||
'ARCHIVES' => 'Archive',
|
||||
|
||||
# footer.php
|
||||
'POWERED_BY' => 'Powered by',
|
||||
'PLUXML_DESCRIPTION' => 'Blog oder Cms ohne Datenbank',
|
||||
'IN' => 'in',
|
||||
'ADMINISTRATION' => 'Admin',
|
||||
'GOTO_TOP' => 'Zum Seitenanfang',
|
||||
'TOP' => 'Top',
|
||||
|
||||
# erreur.php
|
||||
'ERROR' => 'Ein Fehler ist aufgetreten',
|
||||
'BACKTO_HOME' => 'Zurück zur Homepage',
|
||||
|
||||
# common
|
||||
'WRITTEN_BY' => 'Geschrieben von',
|
||||
'CLASSIFIED_IN' => 'Kategorisiert in',
|
||||
'TAGS' => 'Schlüsselwörter',
|
||||
|
||||
# commentaires.php
|
||||
'SAID' => 'sagte',
|
||||
'WRITE_A_COMMENT' => 'Schreiben einen Kommentar',
|
||||
'NAME' => 'Name',
|
||||
'WEBSITE' => 'Website (fakultativ)',
|
||||
'EMAIL' => 'E-mail (fakultativ)',
|
||||
'COMMENT' => 'Kommentar',
|
||||
'CLEAR' => 'Löschen',
|
||||
'SEND' => 'Versenden',
|
||||
'COMMENTS_CLOSED' => 'Die Kommentare sind geschlossen',
|
||||
'ANTISPAM_WARNING' => 'Anti-Spam',
|
||||
|
||||
'REPLY' => 'Antworten',
|
||||
'REPLY_TO' => 'Antworten',
|
||||
'CANCEL' => 'Abbrechen',
|
||||
|
||||
);
|
||||
|
||||
?>
|
56
lang/en.php
Normal file
56
lang/en.php
Normal file
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
|
||||
$LANG = array(
|
||||
|
||||
#header.php
|
||||
'MENU' => 'Menu',
|
||||
'HOME' => 'Home',
|
||||
'GOTO_CONTENT' => 'Goto content',
|
||||
'GOTO_MENU' => 'Goto menu',
|
||||
'COMMENTS_RSS_FEEDS' => 'Rss feeds comments',
|
||||
'COMMENTS' => 'Comments',
|
||||
'ARTICLES_RSS_FEEDS' => 'Rss feeds articles',
|
||||
'ARTICLES' => 'Articles',
|
||||
|
||||
# sidebar.php
|
||||
'CATEGORIES' => 'Categories',
|
||||
'LATEST_ARTICLES' => 'Latest articles',
|
||||
'LATEST_COMMENTS' => 'Latest comments',
|
||||
'ARCHIVES' => 'Archives',
|
||||
|
||||
# footer.php
|
||||
'POWERED_BY' => 'Powered by',
|
||||
'PLUXML_DESCRIPTION' => 'Blog or Cms without database',
|
||||
'IN' => 'in',
|
||||
'ADMINISTRATION' => 'Administration',
|
||||
'GOTO_TOP' => 'Goto top',
|
||||
'TOP' => 'Top',
|
||||
|
||||
# erreur.php
|
||||
'ERROR' => 'Error found',
|
||||
'BACKTO_HOME' => 'Goto home',
|
||||
|
||||
# common
|
||||
'WRITTEN_BY' => 'Written by',
|
||||
'CLASSIFIED_IN' => 'Classified in',
|
||||
'TAGS' => 'Tags',
|
||||
|
||||
# commentaires.php
|
||||
'SAID' => 'said',
|
||||
'WRITE_A_COMMENT' => 'Write a comment',
|
||||
'NAME' => 'Name',
|
||||
'WEBSITE' => 'Site (optional)',
|
||||
'EMAIL' => 'E-mail (optional)',
|
||||
'COMMENT' => 'Comment',
|
||||
'CLEAR' => 'Clear',
|
||||
'SEND' => 'Send',
|
||||
'COMMENTS_CLOSED' => 'Comments are closed',
|
||||
'ANTISPAM_WARNING' => 'Anti-spam checking',
|
||||
|
||||
'REPLY' => 'Reply',
|
||||
'REPLY_TO' => 'Reply to',
|
||||
'CANCEL' => 'Cancel',
|
||||
|
||||
);
|
||||
|
||||
?>
|
56
lang/es.php
Normal file
56
lang/es.php
Normal file
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
|
||||
$LANG = array(
|
||||
|
||||
#header.php
|
||||
'MENU' => 'Menú',
|
||||
'HOME' => 'Inicio',
|
||||
'GOTO_CONTENT' => 'Ir al contenido',
|
||||
'GOTO_MENU' => 'Ir al menú',
|
||||
'COMMENTS_RSS_FEEDS' => 'Hilo Rss de los comentarios',
|
||||
'COMMENTS' => 'Comentarios',
|
||||
'ARTICLES_RSS_FEEDS' => 'Hilo Rss de los artículos',
|
||||
'ARTICLES' => 'Artículos',
|
||||
|
||||
# sidebar.php
|
||||
'CATEGORIES' => 'Categorías',
|
||||
'LATEST_ARTICLES' => 'Ultimos artículos',
|
||||
'LATEST_COMMENTS' => 'Ultimos comentarios',
|
||||
'ARCHIVES' => 'Archivos',
|
||||
|
||||
# footer.php
|
||||
'POWERED_BY' => 'Generado por',
|
||||
'PLUXML_DESCRIPTION' => 'Blog o Cms sin bases de datos',
|
||||
'IN' => 'en',
|
||||
'ADMINISTRATION' => 'Administración',
|
||||
'GOTO_TOP' => 'Volver Inicio de página',
|
||||
'TOP' => 'Inicio de página',
|
||||
|
||||
# erreur.php
|
||||
'ERROR' => 'Se ha detectado un error',
|
||||
'BACKTO_HOME' => 'Volver a la página de Inicio',
|
||||
|
||||
# common
|
||||
'WRITTEN_BY' => 'Escrito por',
|
||||
'CLASSIFIED_IN' => 'Ordenado en',
|
||||
'TAGS' => 'Palabras claves',
|
||||
|
||||
# commentaires.php
|
||||
'SAID' => 'ha dicho',
|
||||
'WRITE_A_COMMENT' => 'Escribir un comentario',
|
||||
'NAME' => 'Nombre',
|
||||
'WEBSITE' => 'Sitio web (opcional)',
|
||||
'EMAIL' => 'Email (opcional)',
|
||||
'COMMENT' => 'Comentario',
|
||||
'CLEAR' => 'Borrar',
|
||||
'SEND' => 'Enviar',
|
||||
'COMMENTS_CLOSED' => 'Comentarios cerrados',
|
||||
'ANTISPAM_WARNING' => 'Chequeo anti-spam',
|
||||
|
||||
'REPLY' => 'Contestación',
|
||||
'REPLY_TO' => 'Contestación',
|
||||
'CANCEL' => 'Cancelar',
|
||||
|
||||
);
|
||||
|
||||
?>
|
2
lang/fr-help.php
Normal file
2
lang/fr-help.php
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?php if (!defined('PLX_ROOT')) exit; ?>
|
||||
<p>Aucune aide disponible</p>
|
56
lang/fr.php
Normal file
56
lang/fr.php
Normal file
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
|
||||
$LANG = array(
|
||||
|
||||
#header.php
|
||||
'MENU' => 'Menu',
|
||||
'HOME' => 'Accueil',
|
||||
'GOTO_CONTENT' => 'Aller au contenu',
|
||||
'GOTO_MENU' => 'Aller au menu',
|
||||
'COMMENTS_RSS_FEEDS' => 'Fil Rss des commentaires',
|
||||
'COMMENTS' => 'Fil des commentaires',
|
||||
'ARTICLES_RSS_FEEDS' => 'Fil Rss des articles',
|
||||
'ARTICLES' => 'Fil des articles',
|
||||
|
||||
# sidebar.php
|
||||
'CATEGORIES' => 'Catégories',
|
||||
'LATEST_ARTICLES' => 'Derniers articles',
|
||||
'LATEST_COMMENTS' => 'Derniers commentaires',
|
||||
'ARCHIVES' => 'Archives',
|
||||
|
||||
# footer.php
|
||||
'POWERED_BY' => 'Généré par',
|
||||
'PLUXML_DESCRIPTION' => 'Blog ou Cms sans base de données',
|
||||
'IN' => 'en',
|
||||
'ADMINISTRATION' => 'Administration',
|
||||
'GOTO_TOP' => 'Remonter en haut de page',
|
||||
'TOP' => 'Haut de page',
|
||||
|
||||
# erreur.php
|
||||
'ERROR' => 'La page que vous avez demandée n\'existe pas',
|
||||
'BACKTO_HOME' => 'Retour à la page d\'accueil',
|
||||
|
||||
# common
|
||||
'WRITTEN_BY' => 'Rédigé par',
|
||||
'CLASSIFIED_IN' => 'Classé dans',
|
||||
'TAGS' => 'Mots clés',
|
||||
|
||||
# commentaires.php
|
||||
'SAID' => 'a dit',
|
||||
'WRITE_A_COMMENT' => 'Écrire un commentaire',
|
||||
'NAME' => 'Votre nom ou pseudo',
|
||||
'WEBSITE' => 'Votre site Internet (facultatif)',
|
||||
'EMAIL' => 'Votre adresse e-mail (facultatif)',
|
||||
'COMMENT' => 'Contenu de votre message',
|
||||
'CLEAR' => 'Effacer',
|
||||
'SEND' => 'Envoyer votre commentaire',
|
||||
'COMMENTS_CLOSED' => 'Les commentaires sont fermés',
|
||||
'ANTISPAM_WARNING' => 'Vérification anti-spam',
|
||||
|
||||
'REPLY' => 'Répondre',
|
||||
'REPLY_TO' => 'Répondre à',
|
||||
'CANCEL' => 'Annuler',
|
||||
|
||||
);
|
||||
|
||||
?>
|
0
lang/index.html
Normal file
0
lang/index.html
Normal file
56
lang/it.php
Normal file
56
lang/it.php
Normal file
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
|
||||
$LANG = array(
|
||||
|
||||
#header.php
|
||||
'MENU' => 'Menu',
|
||||
'HOME' => 'Home',
|
||||
'GOTO_CONTENT' => 'Vai al contenuto',
|
||||
'GOTO_MENU' => 'Vai al menu',
|
||||
'COMMENTS_RSS_FEEDS' => 'Feed dei commenti',
|
||||
'COMMENTS' => 'Commenti',
|
||||
'ARTICLES_RSS_FEEDS' => 'Feed degli articoli',
|
||||
'ARTICLES' => 'Articoli',
|
||||
|
||||
# sidebar.php
|
||||
'CATEGORIES' => 'Categorie',
|
||||
'LATEST_ARTICLES' => 'Ultimi articoli',
|
||||
'LATEST_COMMENTS' => 'Ultimi commenti',
|
||||
'ARCHIVES' => 'Archivio',
|
||||
|
||||
# footer.php
|
||||
'POWERED_BY' => 'Powered by',
|
||||
'PLUXML_DESCRIPTION' => 'Blog o Cms senza database',
|
||||
'IN' => 'in',
|
||||
'ADMINISTRATION' => 'Amministrazione',
|
||||
'GOTO_TOP' => 'Ritorna in alto',
|
||||
'TOP' => 'Inizio',
|
||||
|
||||
# erreur.php
|
||||
'ERROR' => 'Eè stato rilevato un errore',
|
||||
'BACKTO_HOME' => 'Ritorna alla pagina principale',
|
||||
|
||||
# common
|
||||
'WRITTEN_BY' => 'Pubblicato da',
|
||||
'CLASSIFIED_IN' => 'Categoria',
|
||||
'TAGS' => 'Tag',
|
||||
|
||||
# commentaires.php
|
||||
'SAID' => 'ha detto',
|
||||
'WRITE_A_COMMENT' => 'Scrivi',
|
||||
'NAME' => 'Nome',
|
||||
'WEBSITE' => 'Sito (facoltativo)',
|
||||
'EMAIL' => 'Email (facoltativo)',
|
||||
'COMMENT' => 'Commento',
|
||||
'CLEAR' => 'Cancella',
|
||||
'SEND' => 'Invia',
|
||||
'COMMENTS_CLOSED' => 'Commenti bloccati',
|
||||
'ANTISPAM_WARNING' => 'Verifica antispam',
|
||||
|
||||
'REPLY' => 'Rispondere',
|
||||
'REPLY_TO' => 'Rispondere',
|
||||
'CANCEL' => 'Annullare',
|
||||
|
||||
);
|
||||
|
||||
?>
|
56
lang/nl.php
Normal file
56
lang/nl.php
Normal file
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
|
||||
$LANG = array(
|
||||
|
||||
#header.php
|
||||
'MENU' => 'Menu',
|
||||
'HOME' => 'Home',
|
||||
'GOTO_CONTENT' => 'Ga naar inhoud',
|
||||
'GOTO_MENU' => 'Ga naar menu',
|
||||
'COMMENTS_RSS_FEEDS' => 'RSS van de commentaren',
|
||||
'COMMENTS' => 'Commentaren',
|
||||
'ARTICLES_RSS_FEEDS' => 'RSS van de artikels',
|
||||
'ARTICLES' => 'Artikels',
|
||||
|
||||
# sidebar.php
|
||||
'CATEGORIES' => 'Categorieën',
|
||||
'LATEST_ARTICLES' => 'Laatste artikels',
|
||||
'LATEST_COMMENTS' => 'Laatste commentaren',
|
||||
'ARCHIVES' => 'Archief',
|
||||
|
||||
# footer.php
|
||||
'POWERED_BY' => 'Aangemaakt met',
|
||||
'PLUXML_DESCRIPTION' => 'Blog of Cms zonder databank',
|
||||
'IN' => 'in',
|
||||
'ADMINISTRATION' => 'Administratie',
|
||||
'GOTO_TOP' => 'Ga naar top pagina',
|
||||
'TOP' => 'Top pagina',
|
||||
|
||||
# erreur.php
|
||||
'ERROR' => 'Er heeft zich een fout voorgedaan',
|
||||
'BACKTO_HOME' => 'Terug naar onthaalpagina',
|
||||
|
||||
# common
|
||||
'WRITTEN_BY' => 'Geschreven door',
|
||||
'CLASSIFIED_IN' => 'Geklasseerd in',
|
||||
'TAGS' => 'Sleutelwoorden',
|
||||
|
||||
# commentaires.php
|
||||
'SAID' => 'zei',
|
||||
'WRITE_A_COMMENT' => 'commentaar achterlaten',
|
||||
'NAME' => 'Naam',
|
||||
'WEBSITE' => 'Site (facultatief)',
|
||||
'EMAIL' => 'E-mail (facultatief)',
|
||||
'COMMENT' => 'Commentaar',
|
||||
'CLEAR' => 'Wissen',
|
||||
'SEND' => 'Verzenden',
|
||||
'COMMENTS_CLOSED' => 'Commentaren zijn afgesloten',
|
||||
'ANTISPAM_WARNING' => 'Anti-spam verificatie',
|
||||
|
||||
'REPLY' => 'Antwoord',
|
||||
'REPLY_TO' => 'Antwoord',
|
||||
'CANCEL' => 'Annuleren',
|
||||
|
||||
);
|
||||
|
||||
?>
|
2
lang/oc-help.php
Normal file
2
lang/oc-help.php
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?php if (!defined('PLX_ROOT')) exit; ?>
|
||||
<p>Pas cap d'ajuda disponibla</p>
|
56
lang/oc.php
Normal file
56
lang/oc.php
Normal file
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
|
||||
$LANG = array(
|
||||
|
||||
#header.php
|
||||
'MENU' => 'Menú',
|
||||
'HOME' => 'Acuèlh',
|
||||
'GOTO_CONTENT' => 'Anar al contengut',
|
||||
'GOTO_MENU' => 'Anar al menú',
|
||||
'COMMENTS_RSS_FEEDS' => 'Fil Rss dels comentaris',
|
||||
'COMMENTS' => 'Fil dels comentaris',
|
||||
'ARTICLES_RSS_FEEDS' => 'Fil Rss dels articles',
|
||||
'ARTICLES' => 'Fil dels articles',
|
||||
|
||||
# sidebar.php
|
||||
'CATEGORIES' => 'Categorias',
|
||||
'LATEST_ARTICLES' => 'Darrièrs articles',
|
||||
'LATEST_COMMENTS' => 'Darrièrs comentaris',
|
||||
'ARCHIVES' => 'Archius',
|
||||
|
||||
# footer.php
|
||||
'POWERED_BY' => 'Generat per',
|
||||
'PLUXML_DESCRIPTION' => 'Blòg o Cms sens basa de donadas',
|
||||
'IN' => 'en',
|
||||
'ADMINISTRATION' => 'Administracion',
|
||||
'GOTO_TOP' => 'Pujar amont',
|
||||
'TOP' => 'Naut de pagina',
|
||||
|
||||
# erreur.php
|
||||
'ERROR' => 'La pagina qu’avètz demandada existís pas',
|
||||
'BACKTO_HOME' => 'Tornar a la pagina d’acuèlh',
|
||||
|
||||
# common
|
||||
'WRITTEN_BY' => 'Redigit per',
|
||||
'CLASSIFIED_IN' => 'Classat dins',
|
||||
'TAGS' => 'Mots claus',
|
||||
|
||||
# commentaires.php
|
||||
'SAID' => 'a dich',
|
||||
'WRITE_A_COMMENT' => 'Escriure un comentari',
|
||||
'NAME' => 'Vòstre nom o escais-nom',
|
||||
'WEBSITE' => 'Vòstre site Internet (facultatiu)',
|
||||
'EMAIL' => 'Vòstre corrièl (facultatiu)',
|
||||
'COMMENT' => 'Contengut de vòstre messatge',
|
||||
'CLEAR' => 'Escafar',
|
||||
'SEND' => 'Mandar vòstre comentari',
|
||||
'COMMENTS_CLOSED' => 'Los comentaris son barrats',
|
||||
'ANTISPAM_WARNING' => 'Verificacion anti-spam',
|
||||
|
||||
'REPLY' => 'Responder',
|
||||
'REPLY_TO' => 'Responder',
|
||||
'CANCEL' => 'Anullar',
|
||||
|
||||
);
|
||||
|
||||
?>
|
57
lang/pl.php
Normal file
57
lang/pl.php
Normal file
|
@ -0,0 +1,57 @@
|
|||
<?php
|
||||
|
||||
$LANG = array(
|
||||
|
||||
#header.php
|
||||
'MENU' => 'Menu',
|
||||
'HOME' => 'Home',
|
||||
'GOTO_CONTENT' => 'Do treści',
|
||||
'GOTO_MENU' => 'Do menu',
|
||||
'COMMENTS_RSS_FEEDS' => 'Komentarze kanału RSS',
|
||||
'COMMENTS' => 'Komentarze',
|
||||
'ARTICLES_RSS_FEEDS' => 'Artykuły kanału RSS',
|
||||
'ARTICLES' => 'Artykuły',
|
||||
|
||||
# sidebar.php
|
||||
'CATEGORIES' => 'Artykuły',
|
||||
'LATEST_ARTICLES' => 'Ostatnie artykuły',
|
||||
'LATEST_COMMENTS' => 'Ostatnie komentarze',
|
||||
'ARCHIVES' => 'Archiwa',
|
||||
|
||||
# footer.php
|
||||
'POWERED_BY' => 'Napędza',
|
||||
'PLUXML_DESCRIPTION' => 'Blog lub cms nie wymagający bazy danych ',
|
||||
'IN' => 'w czasie',
|
||||
'ADMINISTRATION' => 'Administracja',
|
||||
'GOTO_TOP' => 'Przejdź do góry',
|
||||
'TOP' => 'Top',
|
||||
|
||||
# erreur.php
|
||||
'ERROR' => 'Błąd',
|
||||
'BACKTO_HOME' => 'Przejdź do strony głównej',
|
||||
|
||||
# common
|
||||
'WRITTEN_BY' => 'Napisał',
|
||||
'CLASSIFIED_IN' => 'Sklasyfikowane w',
|
||||
'TAGS' => 'Tagi',
|
||||
|
||||
# commentaires.php
|
||||
'SAID' => 'rzekł',
|
||||
'WRITE_A_COMMENT' => 'Napisz komentarz',
|
||||
'NAME' => 'Imię',
|
||||
'WEBSITE' => 'Strona (opcjonalne)',
|
||||
'EMAIL' => 'E-mail (opcjonalne)',
|
||||
'COMMENT' => 'Komentarz',
|
||||
'CLEAR' => 'Wyczyść',
|
||||
'SEND' => 'Wyślij',
|
||||
'COMMENTS_CLOSED' => 'Komentarze zostały wyłączone',
|
||||
'ANTISPAM_WARNING' => 'Kontrola anty-spam',
|
||||
|
||||
'REPLY' => 'Odpowiedź',
|
||||
'REPLY_TO' => 'Odpowiedź',
|
||||
'CANCEL' => 'Anulować',
|
||||
|
||||
|
||||
);
|
||||
|
||||
?>
|
56
lang/pt.php
Normal file
56
lang/pt.php
Normal file
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
|
||||
$LANG = array(
|
||||
|
||||
#header.php
|
||||
'MENU' => 'Menu',
|
||||
'HOME' => 'Início',
|
||||
'GOTO_CONTENT' => 'Ir ao conteúdo',
|
||||
'GOTO_MENU' => 'Ir ao menu',
|
||||
'COMMENTS_RSS_FEEDS' => 'Fluxo RSS dos comentários',
|
||||
'COMMENTS' => 'Comentários',
|
||||
'ARTICLES_RSS_FEEDS' => 'Fluxo Rss dos artigos',
|
||||
'ARTICLES' => 'Artigos',
|
||||
|
||||
# sidebar.php
|
||||
'CATEGORIES' => 'Categorias',
|
||||
'LATEST_ARTICLES' => 'Ultimos artigos',
|
||||
'LATEST_COMMENTS' => 'Ultimos comentários',
|
||||
'ARCHIVES' => 'Arquivos',
|
||||
|
||||
# footer.php
|
||||
'POWERED_BY' => 'Propulsado por',
|
||||
'PLUXML_DESCRIPTION' => 'Blog ou Cms sem banco de dados',
|
||||
'IN' => 'em',
|
||||
'ADMINISTRATION' => 'Administração',
|
||||
'GOTO_TOP' => 'Subir',
|
||||
'TOP' => 'Topo',
|
||||
|
||||
# erreur.php
|
||||
'ERROR' => 'Ocorreu um erro, pedimos desculpas pelo incómodo',
|
||||
'BACKTO_HOME' => 'Voltar ao Índice',
|
||||
|
||||
# common
|
||||
'WRITTEN_BY' => 'Escrito por',
|
||||
'CLASSIFIED_IN' => 'Categorizado em',
|
||||
'TAGS' => 'Tags',
|
||||
|
||||
# commentaires.php
|
||||
'SAID' => 'escreveu',
|
||||
'WRITE_A_COMMENT' => 'Escrever um comentário',
|
||||
'NAME' => 'Nome',
|
||||
'WEBSITE' => 'Web-site (facultativo)',
|
||||
'EMAIL' => 'E-mail (facultativo)',
|
||||
'COMMENT' => 'Commentário',
|
||||
'CLEAR' => 'Apagar',
|
||||
'SEND' => 'Enviar',
|
||||
'COMMENTS_CLOSED' => 'Os comentários estão fechados',
|
||||
'ANTISPAM_WARNING' => 'Verificação anti-spam',
|
||||
|
||||
'REPLY' => 'Resposta',
|
||||
'REPLY_TO' => 'Resposta',
|
||||
'CANCEL' => 'Cancelar',
|
||||
|
||||
);
|
||||
|
||||
?>
|
56
lang/ro.php
Normal file
56
lang/ro.php
Normal file
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
|
||||
$LANG = array(
|
||||
|
||||
#header.php
|
||||
'MENU' => 'Meniu',
|
||||
'HOME' => 'Home',
|
||||
'GOTO_CONTENT' => 'La conţinut',
|
||||
'GOTO_MENU' => 'La meniu',
|
||||
'COMMENTS_RSS_FEEDS' => 'Flux RSS Comentarii',
|
||||
'COMMENTS' => 'Comentarii',
|
||||
'ARTICLES_RSS_FEEDS' => 'Flux RSS Articole',
|
||||
'ARTICLES' => 'Articole',
|
||||
|
||||
# sidebar.php
|
||||
'CATEGORIES' => 'Categorii',
|
||||
'LATEST_ARTICLES' => 'Ultimile Articole',
|
||||
'LATEST_COMMENTS' => 'Ultimile Comentarii',
|
||||
'ARCHIVES' => 'Arhiva',
|
||||
|
||||
# footer.php
|
||||
'POWERED_BY' => 'Realizat de',
|
||||
'PLUXML_DESCRIPTION' => 'Descriere',
|
||||
'IN' => 'în',
|
||||
'ADMINISTRATION' => 'Administraţia',
|
||||
'GOTO_TOP' => 'Dute sus',
|
||||
'TOP' => 'Sus',
|
||||
|
||||
# erreur.php
|
||||
'ERROR' => 'A survenit o eroare',
|
||||
'BACKTO_HOME' => 'Înapoi la Pagina Principală',
|
||||
|
||||
# common
|
||||
'WRITTEN_BY' => 'Scris de',
|
||||
'CLASSIFIED_IN' => 'Postat în',
|
||||
'TAGS' => 'Etichete',
|
||||
|
||||
# commentaires.php
|
||||
'SAID' => 'a spus',
|
||||
'WRITE_A_COMMENT' => 'Adaugă un comentariu',
|
||||
'NAME' => 'Nume',
|
||||
'WEBSITE' => 'Site (nu e obligatoriu)',
|
||||
'EMAIL' => 'E-mail (nu e obligatoriu)',
|
||||
'COMMENT' => 'Comentariul',
|
||||
'CLEAR' => 'CurăŢă',
|
||||
'SEND' => 'Trimite',
|
||||
'COMMENTS_CLOSED' => 'Comentariile sunt închise',
|
||||
'ANTISPAM_WARNING' => 'Verificare anti-spam',
|
||||
|
||||
'REPLY' => 'Răspuns',
|
||||
'REPLY_TO' => 'Răspuns',
|
||||
'CANCEL' => 'Anulare',
|
||||
|
||||
);
|
||||
|
||||
?>
|
56
lang/ru.php
Normal file
56
lang/ru.php
Normal file
|
@ -0,0 +1,56 @@
|
|||
<?php
|
||||
|
||||
$LANG = array(
|
||||
|
||||
#header.php
|
||||
'MENU' => 'меню',
|
||||
'HOME' => 'Главная',
|
||||
'GOTO_CONTENT' => 'Перейти к содержанию',
|
||||
'GOTO_MENU' => 'Перейти к меню',
|
||||
'COMMENTS_RSS_FEEDS' => 'RSS-каналы комментариев',
|
||||
'COMMENTS' => 'Комментарии',
|
||||
'ARTICLES_RSS_FEEDS' => 'Rss-каналы статей',
|
||||
'ARTICLES' => 'Статьи',
|
||||
|
||||
# sidebar.php
|
||||
'CATEGORIES' => 'Категории',
|
||||
'LATEST_ARTICLES' => 'Последние статьи',
|
||||
'LATEST_COMMENTS' => 'Последние комментарии',
|
||||
'ARCHIVES' => 'Архив',
|
||||
|
||||
# footer.php
|
||||
'POWERED_BY' => 'Работает на',
|
||||
'PLUXML_DESCRIPTION' => 'Блог и Cms без баз данных',
|
||||
'IN' => 'в',
|
||||
'ADMINISTRATION' => 'Администрация',
|
||||
'GOTO_TOP' => 'Перейти в верх',
|
||||
'TOP' => 'Вверх',
|
||||
|
||||
# erreur.php
|
||||
'ERROR' => 'Обнаружена ошибка',
|
||||
'BACKTO_HOME' => 'Перейти на главную',
|
||||
|
||||
# common
|
||||
'WRITTEN_BY' => 'Автор',
|
||||
'CLASSIFIED_IN' => 'Частные объявления на',
|
||||
'TAGS' => 'Тэги',
|
||||
|
||||
# commentaires.php
|
||||
'SAID' => 'сказал',
|
||||
'WRITE_A_COMMENT' => 'Создать комментарий',
|
||||
'NAME' => 'Имя',
|
||||
'WEBSITE' => 'сайта (необязательно)',
|
||||
'EMAIL' => 'E-mail (необязательно)',
|
||||
'COMMENT' => 'Комментарий',
|
||||
'CLEAR' => 'Очистить',
|
||||
'SEND' => 'Отправить',
|
||||
'COMMENTS_CLOSED' => 'Комментарии запрещенны',
|
||||
'ANTISPAM_WARNING' => 'Анти-спам проверка',
|
||||
|
||||
'REPLY' => 'ответ',
|
||||
'REPLY_TO' => 'ответ',
|
||||
'CANCEL' => 'отменить',
|
||||
|
||||
);
|
||||
|
||||
?>
|
BIN
preview.jpg
Normal file
BIN
preview.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 28 KiB |
45
sidebar.php
Normal file
45
sidebar.php
Normal file
|
@ -0,0 +1,45 @@
|
|||
<?php if(!defined('PLX_ROOT')) exit; ?>
|
||||
|
||||
<aside class="aside col sml-12 med-4">
|
||||
|
||||
<h3>
|
||||
<?php $plxShow->lang('CATEGORIES'); ?>
|
||||
</h3>
|
||||
|
||||
<ul class="cat-list unstyled-list">
|
||||
<?php $plxShow->catList('','<li id="#cat_id"><a class="#cat_status" href="#cat_url" title="#cat_name">#cat_name</a> (#art_nb)</li>'); ?>
|
||||
</ul>
|
||||
|
||||
<h3>
|
||||
<?php $plxShow->lang('LATEST_ARTICLES'); ?>
|
||||
</h3>
|
||||
|
||||
<ul class="lastart-list unstyled-list">
|
||||
<?php $plxShow->lastArtList('<li><a class="#art_status" href="#art_url" title="#art_title">#art_title</a></li>'); ?>
|
||||
</ul>
|
||||
|
||||
<h3>
|
||||
<?php $plxShow->lang('TAGS'); ?>
|
||||
</h3>
|
||||
|
||||
<ul class="tag-list">
|
||||
<?php $plxShow->tagList('<li class="tag #tag_size"><a class="#tag_status" href="#tag_url" title="#tag_name">#tag_name</a></li>'); ?>
|
||||
</ul>
|
||||
|
||||
<h3>
|
||||
<?php $plxShow->lang('LATEST_COMMENTS'); ?>
|
||||
</h3>
|
||||
|
||||
<ul class="lastcom-list unstyled-list">
|
||||
<?php $plxShow->lastComList('<li><a href="#com_url">#com_author '.$plxShow->getLang('SAID').' : #com_content(34)</a></li>'); ?>
|
||||
</ul>
|
||||
|
||||
<h3>
|
||||
<?php $plxShow->lang('ARCHIVES'); ?>
|
||||
</h3>
|
||||
|
||||
<ul class="arch-list unstyled-list">
|
||||
<?php $plxShow->archList('<li id="#archives_id"><a class="#archives_status" href="#archives_url" title="#archives_name">#archives_name</a> (#archives_nbart)</li>'); ?>
|
||||
</ul>
|
||||
|
||||
</aside>
|
32
static-full-width.php
Normal file
32
static-full-width.php
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?php include(dirname(__FILE__) . '/header.php'); ?>
|
||||
|
||||
<main class="main">
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="grid">
|
||||
|
||||
<div class="content col sml-12">
|
||||
|
||||
<article class="article static" id="static-page-<?php echo $plxShow->staticId(); ?>">
|
||||
|
||||
<header>
|
||||
<h2>
|
||||
<?php $plxShow->staticTitle(); ?>
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<?php $plxShow->staticContent(); ?>
|
||||
|
||||
</article>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include(dirname(__FILE__).'/footer.php'); ?>
|
||||
|
33
static.php
Normal file
33
static.php
Normal file
|
@ -0,0 +1,33 @@
|
|||
<?php include(dirname(__FILE__).'/header.php'); ?>
|
||||
|
||||
<main class="main">
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="grid">
|
||||
|
||||
<div class="content col sml-12 med-8">
|
||||
|
||||
<article class="article static" id="static-page-<?php echo $plxShow->staticId(); ?>">
|
||||
|
||||
<header>
|
||||
<h2>
|
||||
<?php $plxShow->staticTitle(); ?>
|
||||
</h2>
|
||||
</header>
|
||||
|
||||
<?php $plxShow->staticContent(); ?>
|
||||
|
||||
</article>
|
||||
|
||||
</div>
|
||||
|
||||
<?php include(dirname(__FILE__).'/sidebar.php'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include(dirname(__FILE__).'/footer.php'); ?>
|
73
tags.php
Normal file
73
tags.php
Normal file
|
@ -0,0 +1,73 @@
|
|||
<?php include(dirname(__FILE__).'/header.php'); ?>
|
||||
|
||||
<main class="main">
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="grid">
|
||||
|
||||
<div class="content col sml-12 med-8">
|
||||
|
||||
<ul class="repertory menu breadcrumb">
|
||||
<li><a href="<?php $plxShow->racine() ?>"><?php $plxShow->lang('HOME'); ?></a></li>
|
||||
<li><?php $plxShow->tagName(); ?></li>
|
||||
</ul>
|
||||
|
||||
<?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
|
||||
|
||||
<article class="article" id="post-<?php echo $plxShow->artId(); ?>">
|
||||
|
||||
<header>
|
||||
<h2>
|
||||
<?php $plxShow->artTitle('link'); ?>
|
||||
</h2>
|
||||
<small>
|
||||
<span class="written-by">
|
||||
<?php $plxShow->lang('WRITTEN_BY'); ?> <?php $plxShow->artAuthor() ?>
|
||||
</span>
|
||||
<time class="art-date" datetime="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>">
|
||||
<?php $plxShow->artDate('#num_day #month #num_year(4)'); ?>
|
||||
</time>
|
||||
<span class="art-nb-com">
|
||||
<?php $plxShow->artNbCom(); ?>
|
||||
</span>
|
||||
</small>
|
||||
</header>
|
||||
|
||||
<?php $plxShow->artThumbnail(); ?>
|
||||
<?php $plxShow->artChapo(); ?>
|
||||
|
||||
<footer>
|
||||
<small>
|
||||
<span class="classified-in">
|
||||
<?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat() ?>
|
||||
</span>
|
||||
<span class="tags">
|
||||
<?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags() ?>
|
||||
</span>
|
||||
</small>
|
||||
</footer>
|
||||
|
||||
</article>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
||||
<nav class="pagination text-center">
|
||||
<?php $plxShow->pagination(); ?>
|
||||
</nav>
|
||||
|
||||
<span>
|
||||
<?php $plxShow->tagFeed() ?>
|
||||
</span>
|
||||
|
||||
</div>
|
||||
|
||||
<?php include(dirname(__FILE__).'/sidebar.php'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<?php include(dirname(__FILE__).'/footer.php'); ?>
|
Loading…
Reference in a new issue