X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tpl%2Fhome.twig;h=a6da641f6a4d95bcc266032d3e305ea6cccb4a5e;hb=7aa8ccc47d511f62fc46af53f7fc43d9bedebff3;hp=8b602a258a31fd41fd2524718c456af57b7748d6;hpb=c67e13e04baab64bcc63fd0dca46125513250c44;p=github%2Fwallabag%2Fwallabag.git diff --git a/tpl/home.twig b/tpl/home.twig index 8b602a25..a6da641f 100644 --- a/tpl/home.twig +++ b/tpl/home.twig @@ -1,21 +1,29 @@ - -
-

logo pochepoche

-
-
+{% extends "layout.twig" %} +{% block title %}{% trans "home" %}{% endblock %} {% block menu %} - +{% include '_menu.twig' %} {% endblock %} {% block precontent %} {% endblock %} - {include="messages"} \ No newline at end of file +{% block content %} + {{ page_links | raw }} + {% for entry in entries %} +
+

{{ entry.title|e }}

+ +

{{ entry.content|striptags|slice(0, 300) }}...

+

{{ entry.url | e | getDomain }}

+
+ {% endfor %} + {{ page_links | raw }} +{% endblock %} \ No newline at end of file