# HG changeset patch # User Goffi # Date 1522044833 -7200 # Node ID f1d47c2942ae695673c0a54d09ae351cf091dc33 # Parent 0a0d9a953d98cf98cc2ac3e6389abc197ff98f9a blog (discover): new discover template diff -r 0a0d9a953d98 -r f1d47c2942ae default/blog/discover.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/default/blog/discover.html Mon Mar 26 08:13:53 2018 +0200 @@ -0,0 +1,33 @@ +{% extends 'base/base.html' %} +{% import 'components/block.html' as block %} +{% import 'components/images.html' as images with context %} +{% import 'components/avatar.html' as avatar with context %} +{% import 'input/form.html' as form with context %} +{% import 'input/field.html' as field with context %} + +{% block body %} +{{ icon_defs('blog') }} +

+ {% trans %} + Please select the blog you want to consult + {% endtrans %} +

+
+ +
+ +

{% trans %}Or enter the jid of a blog writer{% endtrans %}

+{% call form.form(class="form_single") %} + {{ field.text("jid", _("blog writer jid"), required=true)}} + {{ field.submit(_("Consult")) }} +{% endcall %} +{% endblock body %}