Compare commits

..

2 Commits

Author SHA1 Message Date
89215df21b renommage dossiers articles 2019-02-10 11:24:40 +01:00
48cc573c1c limiter aux articles commençant par "20" 2019-02-10 11:18:35 +01:00
7 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
<div class="container-fluid bg-grey">
<div class="row">
<div class="col-sm-4">
<br><img id="logo_ARTICLE" src="images/block_image.php?methode=treemapV2" width="100%; height: auto"></img>
<br><img id="logo_ARTICLE" src="images/block_image.php?methode=treemap2" width="100%; height: auto"></img>
<br><p>ARTICLE</p>
</div>
<div class="col-sm-8">

View File

@@ -160,7 +160,7 @@
<?php
$odd_even = 0;
$liste = '';
foreach (glob("articles/*/header.html") as $filename) {
foreach (glob("articles/20*/header.html") as $filename) {
$article = basename(dirname($filename));
$odd_even = 1 - $odd_even;
$header = file_get_contents($filename);