Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / landing.html @ 0156e40c

History | View | Annotate | Download (877 Bytes)

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

    
3
{% load filters %}
4

    
5
{% block page.body %}
6
<div class="landing-page">
7
    {% for id, service in services.items %}
8
    {% if service.dashboard.show %}
9
        <div class="two-cols clearfix dotted {{ id }}">
10
            <div class="rt">
11
                {% if service.url %}
12
                <a href="{{ service.url }}">
13
                {% endif %}
14
                <img class="pic" src="{{ IM_STATIC_URL }}images/landing-{{ id }}.png" />
15
                {% if service.url %}
16
                </a>
17
                {% endif %}
18
            </div>
19
            <div class="lt">
20
                {{ service.dashboard.description }}
21
            </div>
22
        </div>
23
    {% endif %}
24
    {% endfor %}
25
</div>
26
<script type="text/javascript">
27
        $(document).ready(function() {
28
                $('body').append('<div id="hand">&nbsp;</div>');
29
        });
30
</script>        
31
{% endblock %}