{% extends "website/base/base_paroquias.html" %} {% load tags_conteudos %} {% load thumbnail %} {% block principal %} {% if website.websiteprofile.home_noticia %} {% get_latest_contents website=website cod=website.websiteprofile.home_noticia.pk content_type=1 elements=1 as bemvindo %} {% endif %} {% if website.websiteprofile.home_noticias %} {% get_latest_contents website=website sections=website.websiteprofile.home_noticias.pk content_type=1 elements=3 as noticias %} {% endif %} {% if website.websiteprofile.fotogaleria_seccao %} {% get_latest_contents website=website sections=website.websiteprofile.fotogaleria_seccao.pk content_type=2 elements=1 as fotogaleria %} {% endif %} {% if bemvindo %}
{{ bemvindo.0.titulo }}
{% if bemvindo.0.resumo %}{{ bemvindo.0.resumo|linebreaksbr }}{% endif %}. {{ bemvindo.0.noticia|safe }}
{% endif %} {% if noticias %}
{{ website.websiteprofile.home_noticias.title }}
{% for noticia in noticias %}
{% if noticia.capa %}
{% with x=MEDIA_ROOT|add:noticia.capa %} {% thumbnail x "65x65" crop="center" as im %} {% endthumbnail %} {% endwith %}
{% endif %}
{{ noticia.titulo }} - {{ noticia.publicada_inicio|date:"d \d\e F"}}
{% if noticia.resumo %}
{{ noticia.resumo|linebreaks }}
{% endif %}
{% if not forloop.last %}
{% endif %} {% endfor %}
{% endif %} {% if fotogaleria %} {% with fotos=fotogaleria.0.conteudos_fotogaleriaimagem_fotogaleria_imagem.all %}
Fotogaleria
{% for foto in fotos %} {% with x=MEDIA_ROOT|add:foto.imagem %} {% thumbnail x "565x378" crop="center" as im %} {% endthumbnail %} {% endwith %} {% endfor %}
{{ fotogaleria.0.titulo }}
{% endwith %} {% endif %} {% if not bemvindo and not noticias and not fotogaleria %}

{% endif %} {% endblock principal %}