diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-12-22 09:01:20 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-12-22 09:01:20 +0100 |
commit | 0e95eb5121b2f4be63591705c367a0de10046133 (patch) | |
tree | fd389a73fffce6f1b3566bba7c07d02f07c196f7 /app/view/templates/home.php | |
parent | 7f94fccda33383f3a7be364cf0c316e7ed2c61bb (diff) | |
download | wcms-0e95eb5121b2f4be63591705c367a0de10046133.tar.gz wcms-0e95eb5121b2f4be63591705c367a0de10046133.zip |
feature: linkto calc during render
Diffstat (limited to 'app/view/templates/home.php')
-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 a69882d..521d985 100644 --- a/app/view/templates/home.php +++ b/app/view/templates/home.php @@ -72,8 +72,8 @@ <th class="log">log</th> <th class="tag"><a href="<?= $opt->getadress('tag') ?>">tag</a></th> <th class="summary">summary</th> - <th class="linkto"><a href="<?= $opt->getadress('linkto') ?>">link to</a></th> - <th class="linkfrom"><a href="<?= $opt->getadress('linkfrom') ?>">linkfrom</a></th> + <th class="linkto"><a href="<?= $opt->getadress('linkto') ?>">to</a></th> + <th class="linkfrom"><a href="<?= $opt->getadress('linkfrom') ?>">from</a></th> <th class="datemodif"><a href="<?= $opt->getadress('datemodif') ?>">last modification</a></th> <th class="datecreation"><a href="<?= $opt->getadress('datecreation') ?>">date of creation</a></th> <th class="date"><a href="<?= $opt->getadress('date') ?>">date</a></th> @@ -89,7 +89,7 @@ <td class="log"><a href="<?= $this->uart('artlog', $item->id()) ?>" target="_blank">⁋</a></td> <td class="tag"><a title="<?= $item->tag('string') ?>"><?= $item->tag('sort') ?></a></td> <td class="summary"><?= $item->description() ?></td> - <td class="linkto"><?= $item->linkto('sort') ?></td> + <td class="linkto"><a title="<?= $item->linkto('string') ?>" ><?= $item->linkto('sort') ?></a></td> <td class="linkfrom"><a title="<?= $item->linkfrom('string') ?>" ><?= $item->linkfrom('sort') ?></a></td> <td class="datemodif"><?= $item->datemodif('hrdi') ?></td> <td class="datecreation"><?= $item->datecreation('hrdi') ?></td> |