diff options
Diffstat (limited to 'tpl/default/linklist.html')
-rw-r--r-- | tpl/default/linklist.html | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/tpl/default/linklist.html b/tpl/default/linklist.html index cc70cc6a..964cc400 100644 --- a/tpl/default/linklist.html +++ b/tpl/default/linklist.html | |||
@@ -47,7 +47,9 @@ | |||
47 | <div class="linklist-item-editbuttons"> | 47 | <div class="linklist-item-editbuttons"> |
48 | <a href="#" title="Fold" class="fold-button"><i class="fa fa-chevron-up"></i></a> | 48 | <a href="#" title="Fold" class="fold-button"><i class="fa fa-chevron-up"></i></a> |
49 | <a href="?edit_link={$value.linkdate}" title="Edit"><i class="fa fa-pencil-square-o"></i></a> | 49 | <a href="?edit_link={$value.linkdate}" title="Edit"><i class="fa fa-pencil-square-o"></i></a> |
50 | <a href="?delete_link={$value.linkdate}&token={$token}" title="Delete"><i class="fa fa-trash"></i></a> | 50 | <a href="?delete_link={$value.linkdate}&token={$token}" title="Delete" class="delete-link"> |
51 | <i class="fa fa-trash"></i> | ||
52 | </a> | ||
51 | </div> | 53 | </div> |
52 | {/if} | 54 | {/if} |
53 | 55 | ||
@@ -68,7 +70,10 @@ | |||
68 | </h2> | 70 | </h2> |
69 | </div> | 71 | </div> |
70 | 72 | ||
71 | <div class="linklist-item-thumbnail">{$value.url|thumbnail}</div> | 73 | {$thumb=thumbnail($value.url)} |
74 | {if="$thumb!=false"} | ||
75 | <div class="linklist-item-thumbnail">{$thumb}</div> | ||
76 | {/if} | ||
72 | 77 | ||
73 | {if="$value.description"} | 78 | {if="$value.description"} |
74 | <div class="linklist-item-description"> | 79 | <div class="linklist-item-description"> |
@@ -76,7 +81,7 @@ | |||
76 | </div> | 81 | </div> |
77 | {/if} | 82 | {/if} |
78 | 83 | ||
79 | <div class="linklist-item-infos"> | 84 | <div class="linklist-item-infos clear"> |
80 | {if="$value.tags"} | 85 | {if="$value.tags"} |
81 | <div class="linklist-item-tags"> | 86 | <div class="linklist-item-tags"> |
82 | <i class="fa fa-tags"></i> | 87 | <i class="fa fa-tags"></i> |
@@ -89,7 +94,7 @@ | |||
89 | {/if} | 94 | {/if} |
90 | 95 | ||
91 | <div class="pure-g"> | 96 | <div class="pure-g"> |
92 | <div class="pure-u-lg-5-8 pure-u-sm-1"> | 97 | <div class="linklist-item-infos-dateblock pure-u-lg-3-8 pure-u-sm-1"> |
93 | <a href="?{$value.shorturl}" title="Permalink"> | 98 | <a href="?{$value.shorturl}" title="Permalink"> |
94 | {if="!$GLOBALS['config']['HIDE_TIMESTAMPS'] || isLoggedIn()"} | 99 | {if="!$GLOBALS['config']['HIDE_TIMESTAMPS'] || isLoggedIn()"} |
95 | <span class="linkdate"> | 100 | <span class="linkdate"> |
@@ -106,7 +111,7 @@ | |||
106 | {if="$link_plugin_counter - 1 != $counter"}·{/if} | 111 | {if="$link_plugin_counter - 1 != $counter"}·{/if} |
107 | {/loop} | 112 | {/loop} |
108 | </div> | 113 | </div> |
109 | <div class="linklist-item-infos-url pure-u-lg-3-8 pure-u-sm-1"> | 114 | <div class="linklist-item-infos-url pure-u-lg-5-8 pure-u-sm-1"> |
110 | <a href="{$value.real_url}" title="{$value.title}"> | 115 | <a href="{$value.real_url}" title="{$value.title}"> |
111 | <i class="fa fa-link"></i> {$value.url} | 116 | <i class="fa fa-link"></i> {$value.url} |
112 | </a> | 117 | </a> |