Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / landing.html @ 1220928d

History | View | Annotate | Download (1.6 kB)

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

    
3
{% load filters %}
4

    
5
{% block page.body %}
6
<div class="landing-page">
7
        <h2>WELCOME TO OKEANOS</h2>
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

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

    
37

    
38

    
39
                </div>
40
        </div>
41
        <div class="two-cols clearfix dotted cms">
42
                <div class="rt">
43
                    <a href=""><img class="pic" src="{{ IM_STATIC_URL }}images/landing-cms.png" /></a>
44
                </div>
45
                <div class="lt">
46
                        Clicking on the top left logo icon, takes you back to the homepage.
47
 
48
                </div>
49
        </div>
50
</div>         
51
{% endblock %}