diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-05-17 11:06:39 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2020-07-23 21:19:21 +0200 |
commit | 69e29ff65ef56b886748c58ba5b037cf217c4a1d (patch) | |
tree | ab27ad9100bc72cb3c9417b623776bc8cfa6d421 /tpl/default | |
parent | 60ae241251b753fc052e50ebd95277dfcb074cb0 (diff) | |
download | Shaarli-69e29ff65ef56b886748c58ba5b037cf217c4a1d.tar.gz Shaarli-69e29ff65ef56b886748c58ba5b037cf217c4a1d.tar.zst Shaarli-69e29ff65ef56b886748c58ba5b037cf217c4a1d.zip |
Process daily page through Slim controller
Diffstat (limited to 'tpl/default')
-rw-r--r-- | tpl/default/daily.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tpl/default/daily.html b/tpl/default/daily.html index e2e7b47b..f07c0a8b 100644 --- a/tpl/default/daily.html +++ b/tpl/default/daily.html | |||
@@ -25,7 +25,7 @@ | |||
25 | <div class="pure-g"> | 25 | <div class="pure-g"> |
26 | <div class="pure-u-lg-1-3 pure-u-1 center"> | 26 | <div class="pure-u-lg-1-3 pure-u-1 center"> |
27 | {if="$previousday"} | 27 | {if="$previousday"} |
28 | <a href="./?do=daily&day={$previousday}"> | 28 | <a href="./daily?day={$previousday}"> |
29 | <i class="fa fa-arrow-left"></i> | 29 | <i class="fa fa-arrow-left"></i> |
30 | {'Previous day'|t} | 30 | {'Previous day'|t} |
31 | </a> | 31 | </a> |
@@ -36,7 +36,7 @@ | |||
36 | </div> | 36 | </div> |
37 | <div class="pure-u-lg-1-3 pure-u-1 center"> | 37 | <div class="pure-u-lg-1-3 pure-u-1 center"> |
38 | {if="$nextday"} | 38 | {if="$nextday"} |
39 | <a href="./?do=daily&day={$nextday}"> | 39 | <a href="./daily?day={$nextday}"> |
40 | {'Next day'|t} | 40 | {'Next day'|t} |
41 | <i class="fa fa-arrow-right"></i> | 41 | <i class="fa fa-arrow-right"></i> |
42 | </a> | 42 | </a> |
@@ -69,7 +69,7 @@ | |||
69 | {$link=$value} | 69 | {$link=$value} |
70 | <div class="daily-entry"> | 70 | <div class="daily-entry"> |
71 | <div class="daily-entry-title center"> | 71 | <div class="daily-entry-title center"> |
72 | <a href="?{$link.shorturl}" title="{'Permalink'|t}"> | 72 | <a href="./?{$link.shorturl}" title="{'Permalink'|t}"> |
73 | <i class="fa fa-link"></i> | 73 | <i class="fa fa-link"></i> |
74 | </a> | 74 | </a> |
75 | <a href="{$link.real_url}">{$link.title}</a> | 75 | <a href="{$link.real_url}">{$link.title}</a> |