aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/_card_preview.html.twig
Commit message (Collapse)AuthorAgeFilesLines
* Card no preview replaced by wallabag logoSimounet2018-11-211-5/+2
|
* Add placeholder image to card-based gallery entries page for #3651Matt Burke2018-10-151-0/+4
| | | | | | | | | | | | I referenced https://css-tricks.com/using-svg/ for using the SVG icon. The icon has a black foreground and white background, which doesn't look very good as a placeholder. So, using the background-image style to show the svg and the inversion filter to make it white on gray. With the image always present, there isn't much difference between the with and without image preview templates, so I merged them. Tested on Chrome, Firefox, and Safari on OSX.
* Content card template sharedSimounet2017-12-261-16/+1
|
* material: replace card activator with article link on card previewKevin Decherf2017-11-061-1/+3
| | | | | | Fixes #2424 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Fix rendering of entry title in Twig viewsKevin Decherf2017-02-021-4/+4
| | | | | | | | | | | | | | | | This commit provides some improvements on the rendering of entry title on entries list and entry views and refactors filter calls: - Remove escape filter from apparent title, striptags is enough - Move raw filter to the end of apparent title as it's ignored if not placed as the last filter - Replace raw filter with e('html_attr') for title used in attributes, fixing possible issue and/or glitch - Add striptags to entry.title used for link sharing to respect the apparent title Fixes #2802 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Fixed possible JS injection via the title editionNicolas Lœuillet2017-01-171-4/+4
|
* Display a bigger image in case of image contentJeremy Benoist2016-11-081-0/+47
If the content is only an image, we can display a bigger preview image because we won’t have text to display. Also, split different card view to avoid too much complexity in the entries.html.twig