diff options
Diffstat (limited to 'index.php')
-rwxr-xr-x | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -128,7 +128,7 @@ catch (Exception $e) | |||
128 | <meta charset="utf-8"> | 128 | <meta charset="utf-8"> |
129 | <meta http-equiv="X-UA-Compatible" content="IE=10"> | 129 | <meta http-equiv="X-UA-Compatible" content="IE=10"> |
130 | <title>poche, a read it later open source system</title> | 130 | <title>poche, a read it later open source system</title> |
131 | <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /> | 131 | <link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico" /> |
132 | <link rel="apple-touch-icon-precomposed" sizes="144x144" href="img/apple-touch-icon-144x144-precomposed.png"> | 132 | <link rel="apple-touch-icon-precomposed" sizes="144x144" href="img/apple-touch-icon-144x144-precomposed.png"> |
133 | <link rel="apple-touch-icon-precomposed" sizes="72x72" href="img/apple-touch-icon-72x72-precomposed.png"> | 133 | <link rel="apple-touch-icon-precomposed" sizes="72x72" href="img/apple-touch-icon-72x72-precomposed.png"> |
134 | <link rel="apple-touch-icon-precomposed" href="img/apple-touch-icon-precomposed.png"> | 134 | <link rel="apple-touch-icon-precomposed" href="img/apple-touch-icon-precomposed.png"> |
@@ -154,7 +154,7 @@ catch (Exception $e) | |||
154 | if ($i == 0) { | 154 | if ($i == 0) { |
155 | echo '<section class="line grid3">'; | 155 | echo '<section class="line grid3">'; |
156 | } | 156 | } |
157 | echo '<aside class="mod entrie mb2"><h2 class="h6-like"><a href="readityourself.php?url='.urlencode($entry['url']).'">' . $entry['title'] . '</h2><div class="tools"><a href="?action=toggle_archive&id='.$entry['id'].'" title="toggle mark as read" class="tool">✓</a> <a href="?action=toggle_fav&id='.$entry['id'].'" title="toggle favorite" class="tool">'.(($entry['is_fav'] == 0) ? '☆' : '★' ).'</a> <a href="?action=delete&id='.$entry['id'].'" title="toggle delete" class="tool">⨯</a></div></aside>'; | 157 | echo '<aside class="mod entrie mb2"><h2 class="h6-like"><a href="readityourself.php?url='.urlencode($entry['url']).'">' . $entry['title'] . '</h2><div class="tools"><a href="?action=toggle_archive&id='.$entry['id'].'" title="toggle mark as read" class="tool">✓</a> <a href="?action=toggle_fav&id='.$entry['id'].'" title="toggle favorite" class="tool">'.(($entry['is_fav'] == 0) ? '☆' : '★' ).'</a> <a href="?action=delete&id='.$entry['id'].'" title="toggle delete" onclick="return confirm(\'Are you sure?\')" class="tool">⨯</a></div></aside>'; |
158 | 158 | ||
159 | $i++; | 159 | $i++; |
160 | if ($i == 3) { | 160 | if ($i == 3) { |