/priv/skel/blog/templates/home.tpl
https://code.google.com/p/zotonic/ · Smarty Template · 32 lines · 22 code · 10 blank · 0 comment · 5 complexity · 5bee147096fd9e693e2f6268473807ea MD5 · raw file
- {% extends "base.tpl" %}
- {% block title %}{{ m.rsc[id].title }}{% endblock %}
- {% block content %}
- {% if m.rsc[id].is_featured %}
-
- <h1>{{ m.rsc[id].title }}</h1>
- <p class="summary">{{ id|summary }}</p>
-
- {% for id in m.rsc[id].media %}
- {% include "_body_media.tpl" width=445 crop=1 align="block" %}
- {% endfor %}
- {% endif %}
- {% with m.search[{query cat='article' sort='-publication_start' pagelen=m.config.site.pagelen.value}] as result %}
- <div id="list-articles">
- {% for id in result %}
- {% include "_article_summary.tpl" id=id big=forloop.first %}
- {% endfor %}
- </div>
- {% ifequal m.config.site.pagelen.value result|length %}
- {% wire id="more-results" action={moreresults result=result target="list-articles" template="_article_summary.tpl"} %}
- <p><a href="javascript:void(0);" id="more-results">More results...</a></p>
- {% endifequal %}
- {% endwith %}
- {% endblock %}