diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2020-01-30 16:38:00 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2020-01-30 16:38:00 +0100 |
commit | de939de88e1ed166d827616e3d17a22fe549202a (patch) | |
tree | 5d11f11f5a337d37dff3f305ab35b7e0b3599c2d /app/view | |
parent | 0259be325a83e200913b3c9acd6700057f2035d9 (diff) | |
download | wcms-de939de88e1ed166d827616e3d17a22fe549202a.tar.gz wcms-de939de88e1ed166d827616e3d17a22fe549202a.zip |
home date title and manual update
Diffstat (limited to 'app/view')
-rw-r--r-- | app/view/templates/home.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/view/templates/home.php b/app/view/templates/home.php index 3ca4556..831282f 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -118,13 +118,13 @@ <td class="linkfrom"><a title="<?= $item->linkfrom('string') ?>"><?= $item->linkfrom('sort') ?></a></td> <?php } if ($columns['datemodif']) { ?> - <td class="datemodif"><?= $item->datemodif('hrdi') ?></td> + <td class="datemodif"><time datetime="<?= $item->datemodif('string') ?>" title="<?= $item->datemodif('dmy') . ' ' . $item->datemodif('ptime') ?>"><?= $item->datemodif('hrdi') ?></time></td> <?php } if ($columns['datecreation']) { ?> - <td class="datecreation"><?= $item->datecreation('hrdi') ?></td> + <td class="datecreation"><time datetime="<?= $item->datecreation('string') ?>" title="<?= $item->datecreation('dmy') . ' ' . $item->datecreation('ptime') ?>"><?= $item->datecreation('hrdi') ?></time></td> <?php } if ($columns['date']) { ?> - <td class="date"><?= $item->date('dmy') ?></td> + <td class="date"><time datetime="<?= $item->date('string') ?>" title="<?= $item->date('dmy') . ' ' . $item->date('ptime') ?>"><?= $item->date('dmy') ?></time></td> <?php } if ($columns['secure']) { ?> <td class="secure"><?= $opt->securelink($item->secure('int') , $item->secure('string')) ?></td> |