Revision 7549d16f snf-astakos-app/astakos/im/templates/im/landing.html

b/snf-astakos-app/astakos/im/templates/im/landing.html
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
	
9
	<div class="two-cols clearfix dotted pithos">
10
		<div class="rt">
11
    		<a href="/pithos/ui/"><img class="pic" src="{{ IM_STATIC_URL }}images/landing-pithos.png" /></a>
12
		</div>
13
		<div class="lt">
14
			<a href="/pithos/ui/">Pithos</a> is the File Storage service. Click to start
15
uploading and managing your files on the cloud.
16

  
17
		</div>
18
	</div>
19
	<div class="two-cols clearfix dotted cyclades">
20
		<div class="rt">
21
  			<a href="/ui/"><img class="pic" src="{{ IM_STATIC_URL }}images/landing-cyclades.png" /></a>
22
		</div>
23
		<div class="lt">
24
			<a href="/ui/">Cyclades</a> is the Compute and Network Service. Click to start
25
creating Virtual Machines and connect them to arbitrary Networks.
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
			Access the <a href="{% url astakos.im.views.edit_profile %}">dashboard</a> from
35
the top right corner of your screen. Here you can manage your profile, see the usage of your resources
36
and manage projects to share virtual resources with colleagues.
37

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

Also available in: Unified diff