Skip to content

Commit

Permalink
[UPDATE] Mise à jour pour PluXml 5.6 Fixes #28
Browse files Browse the repository at this point in the history
[ADD] Bouton pour remonter en haut de la page Fixes #18
[ADD] Ajout des balises og:type Fixes #20
[ADD] Ajout de la balis og:images Fixes #21
[ADD] minification css Fixes #22
[ADD] Ajout des balises title et alt au slideshow Fixes #23
[ADD] Ajout des balises title et alt au background Fixes #24
[BUG] Ajout de la traduction "ARTICLES_DATE_UPDATE", merci ouafnico, Fixes #25
[BUG] Erreur de redirection http vers https Fixes #27
[BUG] Mise à jour du @ Fixes #29
  • Loading branch information
Philippe MALADJIAN committed Oct 18, 2017
1 parent 2733cf6 commit 22b31dd
Show file tree
Hide file tree
Showing 17 changed files with 193 additions and 164 deletions.
22 changes: 17 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

Thème responsive pour PluXml, testé avec Firefox (firefox android) chrome.

* Basé sur Responsee II : http://www.myresponsee.com/
* Demo : http://www.blogoflip.fr
* Basé sur Responsee IV : http://www.myresponsee.com/
* Demo : https://www.blogoflip.fr
* Support : http://forum.pluxml.org/viewtopic.php?id=4785

## Installation
Expand All @@ -12,14 +12,26 @@ Décompresser le fichier responsivee.zip dans le répertoire theme/ de votre ins
## Template pour les plugins
Le dossiers responsee/plugins contient les fichiers php pour pouvoir intégrer les plugins à la structure du thème responsee. Pour les installer copier le fichier php dans le répertoire du plugins.

Par exemple pour le plugin plxMyContact copié le fichier form.contact.php dans le dossier plugins/plxMyContact.
Par exemple pour le plugin plxMyContact copier le fichier form.contact.php dans le dossier plugins/plxMyContact.

* form.contact.php : template pour plxMyContact

## BlogRoll
Ce plugin permet d'afficher une liste de lien que vous gérez depuis la page d'administration. J'ai modifier la version original pour permettre le choix de l'icône qui sera affiché côté public. Pour l'installer copier le répertoire plugins/Blogroll du thème dans le répertoire plugins de votre pluxml.
## BlogRoll
Ce plugin permet d'afficher une liste de liens que vous gérez depuis la page d'administration. J'ai modifié la version original pour permettre le choix de l'icône qui sera affiché côté public. Pour l'installer copier le répertoire plugins/Blogroll du thème dans le répertoire plugins de votre pluxml.

## CHANGELOG
2017/10/18 - 7.1
- [UPDATE] Mise à jour pour PluXml 5.6 https://github.com/Philippe-M/responsee/issues/28
- [ADD] Bouton pour remonter en haut de la page https://github.com/Philippe-M/responsee/issues/18
- [ADD] Ajout des balises og:type https://github.com/Philippe-M/responsee/issues/20
- [ADD] Ajout de la balis og:images https://github.com/Philippe-M/responsee/issues/21
- [ADD] minification css https://github.com/Philippe-M/responsee/issues/22
- [ADD] Ajout des balises title et alt au slideshow https://github.com/Philippe-M/responsee/issues/23
- [ADD] Ajout des balises title et alt au background https://github.com/Philippe-M/responsee/issues/24
- [BUG] Ajout de la traduction "ARTICLES_DATE_UPDATE", merci ouafnico, https://github.com/Philippe-M/responsee/issues/25
- [BUG] Erreur de redirection http vers https https://github.com/Philippe-M/responsee/issues/27
- [BUG] Mise à jour du @ https://github.com/Philippe-M/responsee/issues/29

2016/09/13 - 7.0
- [ADD] Migration du framework css Myresponsee 2 vers la version 4 https://github.com/Philippe-M/responsee/issues/2
- [ADD] Ajout d'un menu repliable pour les écrans small et medium https://github.com/Philippe-M/responsee/issues/14
Expand Down
61 changes: 25 additions & 36 deletions archives.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,44 +10,33 @@
<section>
<?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
<article class="line">
<div itemscope itemtype="http://schema.org/Article" class="margin">
<div class="s-12 l-2 date">
<i class="icon-calendar"></i>
<meta itemprop="datePublished" content="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>">
<p><span><?php $plxShow->artDate('#num_day</span><br />#month #num_year(4)'); ?></p>
</div>
<div class="s-12 l-2 date">
<i class="icon-calendar"></i>
<p><span><?php $plxShow->artDate('#num_day</span><br />#month #num_year(4)'); ?></p>
</div>

<div class="s-12 l-10">
<header>
<h2><span itemprop="name"><?php $plxShow->artTitle('link'); ?></span></h2>
<p><span>
<i class="icon-user"></i><?php $plxShow->lang('WRITTEN_BY'); ?>
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
<span itemprop="name"><?php $plxShow->artAuthor() ?></span>&nbsp;
</span>
<span style="display:none" itemprop="publisher" itemscope itemtype="http://schema.org/Person">
<span itemprop="name"><?php $plxShow->artAuthor() ?></span>&nbsp;
</span>
&nbsp;<i class="icon-discussion"></i><?php $plxShow->artNbCom(); ?>
&nbsp;<i class="icon-clock"></i>
<?php $plxShow->lang('ARTICLES_DATE_UPDATE'); ?>
&nbsp;<?php $plxShow->artUpdateDate('#num_day/#num_month/#num_year(4)'); ?>
<meta itemprop="dateModified" content="<?php $plxShow->artUpdateDate('#num_year(4)-#num_month-#num_day'); ?>">
</span></p>
</header>
<div class="s-12 l-10">
<header>
<h2><?php $plxShow->artTitle('link'); ?></h2>
<p><span>
<i class="icon-user"></i><?php $plxShow->lang('WRITTEN_BY'); ?>
<span itemprop="name"><?php $plxShow->artAuthor() ?></span>&nbsp;
&nbsp;<i class="icon-discussion"></i><?php $plxShow->artNbCom(); ?>
&nbsp;<i class="icon-clock"></i>
<?php $plxShow->lang('ARTICLES_DATE_UPDATE'); ?>
&nbsp;<?php $plxShow->artUpdateDate('#num_day/#num_month/#num_year(4)'); ?>
</span></p>
</header>

<section>
<span itemprop="articleBody">
<?php $plxShow->artThumbnail('<img itemprop="image" class="lazy art_thumbnail full-img" data-original="#img_url" alt="#img_alt" title="#img_title" />'); ?>
<?php $plxShow->artChapo(); ?>
</span>
</section>
<section>
<?php $plxShow->artThumbnail('<img itemprop="image" class="lazy art_thumbnail full-img" data-original="#img_url" alt="#img_alt" title="#img_title" />'); ?>
<?php $plxShow->artChapo(); ?>
</section>

<footer>
<p><span><i class="icon-newspaper"></i><?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat(); ?>&nbsp;<i class="icon-label"></i><?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags(); ?></span></p>
</footer>
<hr>
</div>
<footer>
<p><span><i class="icon-newspaper"></i><?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat(); ?>&nbsp;<i class="icon-label"></i><?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags(); ?></span></p>
</footer>
<hr>
</div>
</article>
<?php endwhile; ?>
Expand All @@ -56,4 +45,4 @@
</section>
</div>

<?php include(dirname(__FILE__).'/footer.php'); ?>
<?php include(dirname(__FILE__).'/footer.php'); ?>
79 changes: 36 additions & 43 deletions article.php
Original file line number Diff line number Diff line change
@@ -1,51 +1,44 @@
<?php include(dirname(__FILE__).'/header.php'); ?>
<?php include(dirname(__FILE__).'/sidebar.php'); ?>

<div class="s-12 l-9">
<div class="box">
<!-- HEADER -->
<!-- ARTICLE -->
<section>
<article class="line">
<div itemscope itemtype="http://schema.org/Article" class="margin">
<div class="s-12 l-2 date">
<i class="icon-calendar"></i>
<meta itemprop="datePublished" content="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>">
<p><span><?php $plxShow->artDate('#num_day</span><br />#month #num_year(4)'); ?></p>
</div>
<div class="s-12 l-10">
<header>
<h2><span itemprop="name"><?php $plxShow->artTitle(''); ?></span></h2>
<p><span><i class="icon-user"></i><?php $plxShow->lang('WRITTEN_BY'); ?>
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
<span itemprop="name"><?php $plxShow->artAuthor() ?></span>
</span>
<span style="display:none" itemprop="publisher" itemscope itemtype="http://schema.org/Person">
<span itemprop="name"><?php $plxShow->artAuthor() ?></span>&nbsp;
</span>
&nbsp;<a href="<?php $plxShow->artUrl(); ?>#comments" title="<?php $plxShow->artNbCom(); ?>"><i class="icon-discussion"></i><?php $plxShow->artNbCom(); ?></a>
&nbsp;<i class="icon-clock"></i>
<?php $plxShow->lang('ARTICLES_DATE_UPDATE'); ?>
&nbsp;<?php $plxShow->artUpdateDate('#num_day/#num_month/#num_year(4)'); ?>
<meta itemprop="dateModified" content="<?php $plxShow->artUpdateDate('#num_year(4)-#num_month-#num_day'); ?>">
</span></p>
</header>
<section itemprop="articleBody">
<?php $plxShow->artThumbnail('<img itemprop="image" class="lazy art_thumbnail full-img" src="#img_url" alt="#img_alt" title="#img_title" />'); ?>
<?php $plxShow->artContent(); ?>
</section>
<footer>
<p><span><i class="icon-newspaper"></i><?php $plxShow->lang('CLASSIFIED_IN') ?> : <span itemprop="articleSection"><?php $plxShow->artCat(); ?></span>&nbsp;<i class="icon-label"></i><?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags(); ?></span></p>
</footer>
</div>
</div>
</article>
<div class="s-12 l-9">
<div class="box">
<section>
<article itemscope itemtype="http://schema.org/Article" class="line">
<div class="s-12 l-2 date">
<i class="icon-calendar"></i>
<p>
<meta itemprop="datePublished" content="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>">
<span><?php $plxShow->artDate('#num_day</span><br />#month #num_year(4)'); ?></span>
</p>
</div>
<div class="s-12 l-10">
<header>
<h2><?php $plxShow->artTitle(''); ?></h2>
<p>
<span><i class="icon-user"></i><?php $plxShow->lang('WRITTEN_BY'); ?>
<span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name"><?php $plxShow->artAuthor() ?></span></span>
&nbsp;<a href="<?php $plxShow->artUrl(); ?>#comments" title="<?php $plxShow->artNbCom(); ?>"><i class="icon-discussion"></i><?php $plxShow->artNbCom(); ?></a>
&nbsp;<i class="icon-clock"></i>
<?php $plxShow->lang('ARTICLES_DATE_UPDATE'); ?>
<meta itemprop="dateModified" content="<?php $plxShow->artUpdateDate('#num_year(4)-#num_month-#num_day'); ?>">
&nbsp;<?php $plxShow->artUpdateDate('#num_day/#num_month/#num_year(4)'); ?>
</p>
</header>
<section itemprop="articleBody">
<?php $plxShow->artThumbnail('<img itemprop="image" class="lazy art_thumbnail full-img" src="#img_url" alt="#img_alt" title="#img_title" />'); ?>
<?php $plxShow->artContent(); ?>
</section>
<footer>
<p><span><i class="icon-newspaper"></i><?php $plxShow->lang('CLASSIFIED_IN') ?> : <span itemprop="articleSection"><?php $plxShow->artCat(); ?></span>&nbsp;<i class="icon-label"></i><?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags(); ?></span></p>
</footer>
</div>
</article>

<?php $plxShow->artAuthorInfos('<div class="author-infos">#art_authorinfos</div>'); ?>

<?php include(dirname(__FILE__).'/commentaires.php'); ?>
</section>
</div>
</section>
</div>


<?php include(dirname(__FILE__).'/footer.php'); ?>
<?php include(dirname(__FILE__).'/footer.php'); ?>
40 changes: 16 additions & 24 deletions categorie.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,52 +10,44 @@

<section>
<?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
<article itemscope itemtype="http://schema.org/Article" class="line">
<article class="line">
<div class="margin">
<div class="s-12 l-2 date">
<i class="icon-calendar"></i>
<p>
<meta itemprop="datePublished" content="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>">
<span><?php $plxShow->artDate('#num_day</span><br />#month #num_year(4)'); ?></p>
<p><span><?php $plxShow->artDate('#num_day</span><br />#month #num_year(4)'); ?></p>
</div>

<div class="s-12 l-10">
<header>
<h2><span itemprop="name"><?php $plxShow->artTitle('link'); ?></span></h2>
<p><span>
<i class="icon-user"></i><?php $plxShow->lang('WRITTEN_BY'); ?>
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
<span itemprop="name"><?php $plxShow->artAuthor() ?></span>
<h2><?php $plxShow->artTitle('link'); ?></h2>
<p>
<span>
<i class="icon-user"></i><?php $plxShow->lang('WRITTEN_BY'); ?>
<?php $plxShow->artAuthor() ?>
&nbsp;<i class="icon-discussion"></i><?php $plxShow->artNbCom(); ?>
&nbsp;<i class="icon-clock"></i>
<?php $plxShow->lang('ARTICLES_DATE_UPDATE'); ?>
&nbsp;<?php $plxShow->artUpdateDate('#num_day/#num_month/#num_year(4)'); ?>
</span>
<span style="display:none" itemprop="publisher" itemscope itemtype="http://schema.org/Person">
<span itemprop="name"><?php $plxShow->artAuthor() ?></span>&nbsp;
</span>
&nbsp;<i class="icon-discussion"></i><?php $plxShow->artNbCom(); ?>
&nbsp;<i class="icon-clock"></i>
<?php $plxShow->lang('ARTICLES_DATE_UPDATE'); ?>
&nbsp;<?php $plxShow->artUpdateDate('#num_day/#num_month/#num_year(4)'); ?>
<meta itemprop="dateModified" content="<?php $plxShow->artUpdateDate('#num_year(4)-#num_month-#num_day'); ?>">
</span></p>
</p>
</header>

<section>
<span itemprop="articleBody">
<?php $plxShow->artThumbnail('<img itemprop="image" class="lazy art_thumbnail full-img" data-original="#img_url" alt="#img_alt" title="#img_title" />'); ?>
<?php $plxShow->artThumbnail('<img class="lazy art_thumbnail full-img" data-original="#img_url" alt="#img_alt" title="#img_title" />'); ?>
<?php $plxShow->artChapo(); ?>
</span>
</section>

<footer>
<p><span><i class="icon-newspaper"></i><?php $plxShow->lang('CLASSIFIED_IN') ?> : <span itemprop="articleSection"><?php $plxShow->artCat(); ?></span>&nbsp;<i class="icon-label"></i><?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags(); ?></span></p>
<p><span><i class="icon-newspaper"></i><?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat(); ?>&nbsp;<i class="icon-label"></i><?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags(); ?></span></p>
</footer>
<hr>
</div>
</div>
</div>
</article>
<?php endwhile; ?>

<div class="right"><?php $plxShow->artFeed('rss',$plxShow->catId()); ?> - <?php $plxShow->pagination(); ?></div>
</section>
</div>

<?php include(dirname(__FILE__).'/footer.php'); ?>
<?php include(dirname(__FILE__).'/footer.php'); ?>
1 change: 1 addition & 0 deletions css/abel-min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 22b31dd

Please sign in to comment.