Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / landing_base.html @ 7549d16f

History | View | Annotate | Download (556 Bytes)

1
{% extends "im/account_base.html" %}
2

    
3
{% load filters %}
4
{% block page.title %}Overview{% endblock %}
5

    
6
{% block page.body %}
7
<div class="landing-page">
8
        {% block content%}
9
                {% for service in services %}
10
                        <div class="two-cols clearfix dotted">
11
                                <div class="rt">
12
                                        <a href="{{ service.url }}">
13
                                                <img class="pic" src="{{ service.landing_image }}" />
14
                                        </a>
15
                                </div>
16
                                <div class="lt">
17
                                        <h2>{{ service.name }}</h2>
18
                                        {{ service.description }}
19
                                </div>
20
                        </div>
21
                {% endfor %}
22
        {% endblock content %}
23
         
24
</div>        
25
         
26
{% endblock %}