Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / landing.html @ 9a0d8393

History | View | Annotate | Download (1.7 kB)

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

    
3
{% load filters %}
4

    
5
{% block page.body %}
6
<div class="landing-page">
7
        
8
        <div class="two-cols clearfix dotted pithos">
9
                <div class="rt">
10
                    <a href="/pithos/ui/"><img class="pic" src="{{ IM_STATIC_URL }}images/landing-pithos.png" /></a>
11
                </div>
12
                <div class="lt">
13
                        <a href="/pithos/ui/">Pithos</a> is the File Storage service. Click to start
14
uploading and managing your files on the cloud.
15

    
16
                </div>
17
        </div>
18
        <div class="two-cols clearfix dotted cyclades">
19
                <div class="rt">
20
                          <a href="/ui/"><img class="pic" src="{{ IM_STATIC_URL }}images/landing-cyclades.png" /></a>
21
                </div>
22
                <div class="lt">
23
                        <a href="/ui/">Cyclades</a> is the Compute and Network Service. Click to start
24
creating Virtual Machines and connect them to arbitrary Networks.
25

    
26
                </div>
27
        </div>
28
        <div class="two-cols clearfix dotted dashboard">
29
                <div class="rt">
30
                    <a href="{% url astakos.im.views.edit_profile %}"><img class="pic" src="{{ IM_STATIC_URL }}images/landing-dashboard.png" /></a>
31
                </div>
32
                <div class="lt">
33
                        Access the <a href="{% url astakos.im.views.edit_profile %}">dashboard</a> from
34
the top right corner of your screen. Here you can manage your profile, see the usage of your resources
35
and manage projects to share virtual resources with colleagues.
36

    
37
                </div>
38
        </div>
39
        <div class="two-cols clearfix dotted cms">
40
                <div class="rt">
41
                    <a href=""><img class="pic" src="{{ IM_STATIC_URL }}images/landing-cms.png" /></a>
42
                </div>
43
                <div class="lt">
44
                        Click on the top left logo icon, to go back to the homepage.
45
 
46
                </div>
47
        </div>
48
</div>
49
<script type="text/javascript">
50
        $(document).ready(function() {
51
                $('body').append('<div id="hand">&nbsp;</div>');
52
        });
53
</script>        
54
{% endblock %}