diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-08-27 14:47:52 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2020-08-27 14:48:07 +0200 |
commit | 3eba6bd3184fd1ffc7f43ad54e68659f1416c84b (patch) | |
tree | f84388e9347b25f8331896bfca5a36b81f024d32 | |
parent | bea062149ebcb4663861edb1cc0a32faf85b273f (diff) | |
download | Shaarli-3eba6bd3184fd1ffc7f43ad54e68659f1416c84b.tar.gz Shaarli-3eba6bd3184fd1ffc7f43ad54e68659f1416c84b.tar.zst Shaarli-3eba6bd3184fd1ffc7f43ad54e68659f1416c84b.zip |
Default template: display pin button in mobile view
Fixes #1347
-rw-r--r-- | tpl/default/linklist.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tpl/default/linklist.html b/tpl/default/linklist.html index c7617b22..2475f5fd 100644 --- a/tpl/default/linklist.html +++ b/tpl/default/linklist.html | |||
@@ -272,7 +272,17 @@ | |||
272 | <i class="fa fa-trash" aria-hidden="true"></i> | 272 | <i class="fa fa-trash" aria-hidden="true"></i> |
273 | </a> | 273 | </a> |
274 | · | 274 | · |
275 | <a href="{$base_path}/admin/shaare/{$value.id}" aria-label="{$strEdit}" title="{$strEdit}"><i class="fa fa-pencil-square-o edit-link" aria-hidden="true"></i></a> | 275 | <a href="{$base_path}/admin/shaare/{$value.id}" aria-label="{$strEdit}" title="{$strEdit}"> |
276 | <i class="fa fa-pencil-square-o edit-link" aria-hidden="true"></i> | ||
277 | </a> | ||
278 | · | ||
279 | <a href="{$base_path}/admin/shaare/{$value.id}/pin?token={$token}" | ||
280 | aria-label="{$strToggleSticky}" | ||
281 | title="{$strToggleSticky}" | ||
282 | class="pin-link {if="$value.sticky"}pinned-link{/if}" | ||
283 | > | ||
284 | <i class="fa fa-thumb-tack" aria-hidden="true"></i> | ||
285 | </a> | ||
276 | {/if} | 286 | {/if} |
277 | </div> | 287 | </div> |
278 | </div> | 288 | </div> |