aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig')
-rw-r--r--src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
index 98616635..d1cadea9 100644
--- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
+++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig
@@ -26,6 +26,11 @@
26 <div class="card-body"> 26 <div class="card-body">
27 {% if not entry.previewPicture is null %} 27 {% if not entry.previewPicture is null %}
28 <div class="card-image waves-effect waves-block waves-light"> 28 <div class="card-image waves-effect waves-block waves-light">
29 <ul class="card-entry-labels">
30 {% for tag in entry.tags | slice(0, 3) %}
31 <li>{{ tag.label }}</li>
32 {% endfor %}
33 </ul>
29 <div class="preview activator" style="background-image: url({{ entry.previewPicture }})"></div> 34 <div class="preview activator" style="background-image: url({{ entry.previewPicture }})"></div>
30 </div> 35 </div>
31 {% endif %} 36 {% endif %}
@@ -35,7 +40,7 @@
35 <i class="card-title grey-text text-darken-4 activator material-icons right">more_vert</i> 40 <i class="card-title grey-text text-darken-4 activator material-icons right">more_vert</i>
36 {% endif %} 41 {% endif %}
37 42
38 <span class="card-title"><a href="{{ path('view', { 'id': entry.id }) }}" title="{{ entry.title|raw }}">{{ entry.title|striptags|slice(0, 42)|raw }}</a></span> 43 <span class="card-title"><a href="{{ path('view', { 'id': entry.id }) }}" title="{{ entry.title|striptags }}">{{ entry.title|striptags|raw }}</a></span>
39 44
40 <div class="estimatedTime grey-text"> 45 <div class="estimatedTime grey-text">
41 <span class="tool reading-time"> 46 <span class="tool reading-time">
@@ -50,6 +55,11 @@
50 55
51 {% if entry.previewPicture is null %} 56 {% if entry.previewPicture is null %}
52 <p>{{ entry.content|striptags|slice(0, 300)|raw }}&hellip;</p> 57 <p>{{ entry.content|striptags|slice(0, 300)|raw }}&hellip;</p>
58 <ul class="card-entry-labels-hidden">
59 {% for tag in entry.tags | slice(0, 2) %}
60 <li>{{ tag.label }}</li>
61 {% endfor %}
62 </ul>
53 {% endif %} 63 {% endif %}
54 </div> 64 </div>
55 </div> 65 </div>
@@ -66,6 +76,12 @@
66 </div> 76 </div>
67 77
68 <p>{{ entry.content|striptags|slice(0, 300)|raw }}&hellip;</p> 78 <p>{{ entry.content|striptags|slice(0, 300)|raw }}&hellip;</p>
79
80 <ul class="card-entry-labels-hidden">
81 {% for tag in entry.tags %}
82 <li>{{ tag.label }}</li>
83 {% endfor %}
84 </ul>
69 </div> 85 </div>
70 {% endif %} 86 {% endif %}
71 87