aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
Commit message (Collapse)AuthorAgeFilesLines
* 💄 Add untagged list link to filter menuLuc Didry2019-10-101-0/+6
| | | | Fix #3804
* Changed RSS to Atom feed and improve pagingThomas Citharel2019-04-251-4/+4
|
* Move icon into the top menu barJeremy Benoist2019-01-191-1/+0
| | | | | | | Change the way to select a random entry: - select all ids from the given user (with filters) - choose randomly one in php - find that entry
* Better iconJeremy Benoist2019-01-191-1/+1
|
* Use only one method to randomizeJeremy Benoist2019-01-191-1/+1
| | | | Instead of one per type, one for all is ok.
* Added random featureNicolas LÅ“uillet2019-01-191-3/+4
|
* Update entries.html.twigEloi Coutant2019-01-101-2/+2
| | | Should fix https://github.com/wallabag/wallabag/issues/3832
* Add placeholder image to card-based gallery entries page for #3651Matt Burke2018-10-151-3/+1
| | | | | | | | | | | | 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.
* Fix pagination on list modeSimounet2017-12-041-4/+5
|
* Empty currentTag should be nullJeremy Benoist2017-07-281-1/+1
| | | | And when a parameter is null, it won't appear in the url like `?tag=`.
* Add all entries RSS feed and put links on tag page itself and baggy tooThomas Citharel2017-06-211-3/+13
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Add isPublic filter on entriesJeremy Benoist2017-06-101-0/+11
|
* Fixed tags display on grid viewNicolas LÅ“uillet2017-05-311-2/+2
|
* Adds Webpack support and removes the use for GruntThomas Citharel2017-05-041-2/+2
| | | | | | | | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr> use scss Signed-off-by: Thomas Citharel <tcit@tcit.fr> fix build, add babel, fix annotations fixes (and improvements !) for baggy add live reload & environments & eslint & theme fixes
* Renamed view_mode by list_mode and hide excerptNicolas LÅ“uillet2016-11-281-4/+4
|
* Added list viewNicolas LÅ“uillet2016-11-281-2/+6
|
* Added search engine in baggy themeNicolas LÅ“uillet2016-11-191-1/+1
|
* Added a simple search engineNicolas LÅ“uillet2016-11-191-3/+6
| | | | Fix #18
* Merge remote-tracking branch 'origin/master' into 2.2Jeremy Benoist2016-11-191-80/+21
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # .editorconfig # docs/de/index.rst # docs/de/user/import.rst # docs/en/index.rst # docs/en/user/configuration.rst # docs/en/user/import.rst # docs/fr/index.rst # docs/fr/user/import.rst # src/Wallabag/CoreBundle/Command/InstallCommand.php # src/Wallabag/CoreBundle/Resources/translations/messages.da.yml # src/Wallabag/CoreBundle/Resources/translations/messages.de.yml # src/Wallabag/CoreBundle/Resources/translations/messages.en.yml # src/Wallabag/CoreBundle/Resources/translations/messages.es.yml # src/Wallabag/CoreBundle/Resources/translations/messages.fa.yml # src/Wallabag/CoreBundle/Resources/translations/messages.fr.yml # src/Wallabag/CoreBundle/Resources/translations/messages.it.yml # src/Wallabag/CoreBundle/Resources/translations/messages.oc.yml # src/Wallabag/CoreBundle/Resources/translations/messages.pl.yml # src/Wallabag/CoreBundle/Resources/translations/messages.pt.yml # src/Wallabag/CoreBundle/Resources/translations/messages.ro.yml # src/Wallabag/CoreBundle/Resources/translations/messages.tr.yml # src/Wallabag/CoreBundle/Resources/views/themes/baggy/Config/index.html.twig # web/bundles/wallabagcore/themes/baggy/css/style.min.css # web/bundles/wallabagcore/themes/baggy/js/baggy.min.js # web/bundles/wallabagcore/themes/material/css/style.min.css # web/bundles/wallabagcore/themes/material/js/material.min.js
| * Display a bigger image in case of image contentJeremy Benoist2016-11-081-68/+7
| | | | | | | | | | | | 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
| * Round readingtime to avoid crazy numberJeremy Benoist2016-11-061-1/+1
| | | | | | | | Like `8.666666666667 min`
| * Merge pull request #2460 from wallabag/ui-changesNicolas LÅ“uillet2016-11-041-26/+28
| |\ | | | | | | UI Changes
| | * Deal with more resolution issuesThomas Citharel2016-11-031-1/+1
| | | | | | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
| | * Fix resolution issues and 'title' issuesThomas Citharel2016-11-031-6/+6
| | | | | | | | | | | | | | | | | | Also, modify editorconfig for css files. Signed-off-by: Thomas Citharel <tcit@tcit.fr>
| | * Re-add bottom paginationJeremy Benoist2016-10-221-1/+13
| | | | | | | | | | | | Also pager.html.twig wasn’t necessary, there weren't enough duplication to put them in a dedicated template
| | * WIPThomas Citharel2016-10-221-20/+10
| | | | | | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* | | Added http_status in Entry entityNicolas LÅ“uillet2016-11-181-0/+8
|/ /
* | Fixed entries export filtered with a tagNicolas LÅ“uillet2016-10-291-7/+11
| | | | | | | | Fix #2505
* | Renamed variable for page titleNicolas LÅ“uillet2016-10-261-5/+5
| |
* | Added tag label in the page titleNicolas LÅ“uillet2016-10-261-1/+5
|/ | | | Fix #2472
* Fix few invalid HTML tagsKrzysztof Szafranek2016-10-091-1/+1
|
* better tags on materialThomas Citharel2016-10-051-3/+3
|
* Merge pull request #2314 from wallabag/assetsNicolas LÅ“uillet2016-10-031-1/+1
|\ | | | | Assets work
| * Assets workThomas Citharel2016-09-281-1/+1
| | | | | | | | | | | | | | | | | | | | * ES6 all the things ! * ESLint checks everything * CSS fixes (use stylelint) * Fix #2231
* | Removed duplicated templates filesNicolas LÅ“uillet2016-09-301-1/+1
|/
* Merge remote-tracking branch 'origin/master' into 2.1Jeremy Benoist2016-08-281-1/+1
|\
| * A new version of the plugin tinydot with update on window resizeAlexandr Danilov2016-08-251-1/+1
| |
| * Merge pull request #2230 from modos189/issue_2055Nicolas LÅ“uillet2016-08-231-1/+1
| |\ | | | | | | Cut entries title in card view: continued
| | * Simplify the initialization of the plugin dotdotdotAlexandr Danilov2016-08-221-1/+1
| | |
| | * Don't cut entries title in card viewBaptiste Mille-Mathias2016-05-211-1/+1
| | | | | | | | | | | | Stop cutting titles arbitrary at caracter 42.
* | | Changed where page title is displayedNicolas LÅ“uillet2016-08-261-13/+1
| | |
* | | Translations and baggy view for tagsNicolas LÅ“uillet2016-08-231-1/+2
| | |
* | | Links on each tag in Tags viewNicolas LÅ“uillet2016-08-231-1/+3
| | |
* | | Merge remote-tracking branch 'origin/master' into 2.1Jeremy Benoist2016-08-221-1/+1
|\| |
| * | Replaced favorite word/icon with star oneNicolas LÅ“uillet2016-08-181-1/+1
| | | | | | | | | | | | Fix #2041
| * | Merge pull request #2052 from danbartram/feature-filter-unreadJeremy Benoist2016-05-271-0/+5
| |\ \ | | |/ | |/| Add unread filter to entries pages
| | * Add unread filter to entries pagesDaniel Bartram2016-05-091-0/+5
| | | | | | | | | | | | Add the ability to filter for unread pages in the filters menu.
* | | Bring tags on entries view to baggyThomas Citharel2016-07-011-1/+1
| | | | | | | | | | | | Also, a couple of UI improvement and CSS fixing
* | | minor ui fixesThomas Citharel2016-06-231-5/+2
| | |
* | | Add tags on entries viewThomas Citharel2016-06-231-0/+19
| | | | | | | | | | | | Should be tested on old browsers