Sorgente del template website/link_list.html

{% extends "base1col.html" %}

{% block breadcrumb %}{% endblock breadcrumb %}


{% block content %}
<div class="span12">

{% ifequal tipologia 'solidarieta'  %}    
    <h2>{% if tipologia %} Solidarietà {% endif %}</h2>
    <h4 style="color: black;">Canti Corum da sempre sensibile e attento alle realtà della città e della provincia tiene vari concerti a sostegno di Istituti, Fondazioni, Associazioni impegnate nel sociale.</h4>
    <br>
    <h4 style="color: #710A15;">Clicca sul simbolo per conoscere meglio l’associazione.</h4>
    <br>
    {% else %}
    <h2>{% if tipologia %} {{ tipologia|capfirst }} {% endif %}</h2>
{% endifequal %}
  <ul class="thumbnails">
      {% for link in object_list %}
          {% ifequal tipologia 'solidarieta'%}
          <li class="span1" style="min-height:200px;min-width:160px;">
              {% if link.images %}
              <p>
                  <a {% if  link.url %}href="{{ link.url }}"{% endif %} target="_blank"><img src="{{ link.images.url }}" style="width:170px;"/></a>
             </p>
              {% endif %}
          </li>
          {% endifequal %}
          
          
          {% ifequal tipologia 'partners'%}
          <li class="span3" style="min-height:300px;">
              <h4><a {% if  link.url %}href="{{ link.url }}"{% endif %} target="_blank">{{ link.titolo }}</a></h4>
              <p {% ifequal tipologia 'partners'%}style="min-height:100px;" {% else %}style="min-height:20px;"{% endifequal %} >{{ link.descrizione }}</p>
              {% if link.images %}
              <p>
                  <a {% if  link.url %}href="{{ link.url }}"{% endif %} target="_blank"><img src="{{ link.images.url }}" /></a>
             </p>
              {% endif %}
          </li>
           {% endifequal %}
          
          
          
      {% endfor %}
  </ul>

</div>
{% endblock content %}

{% block extrabody %}
<script type="text/javascript" charset="utf-8">
   
</script>
{% endblock extrabody %}