Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / projects / list_types.html @ b27c104d

History | View | Annotate | Download (2.6 kB)

1
{% extends "im/account_base.html" %}
2
{% block page.subnav %}
3

    
4
        <li><a href="../">Overview</a></li>
5
        <li class="active"><a href="#">Create</a></li>
6
        <li><a href="../join/">Join</a></li>
7

    
8
{%endblock %}
9
{% block body %}
10
<div class="projects">
11
        <div class="clearfix">
12
                <p>You can create the followind type of projects:</p>
13
        </div>
14
        
15
        <div class="two-cols clearfix dotted">
16
                <div class="rt centered">
17
                        <img alt="THINK ABOUT IT" src="/static/medialibrary/2012/04/proffessor.png">
18
                </div>
19
                <div class="lt">
20
                        <h2 style="color:#B66D00;">COURSE</h2>
21
                    <div>
22
                            <p>You wake up one morning and you need a new computer with a specific operating system and hardware requirements (or 10 new computers). You also need 10GB of storage space to store some new content you just got your hands on (or 50GB ;-)).</p>
23
                            <a href="course/" class="submit">CREATE COURSE</a>
24
                    </div>
25
                </div>
26
        </div>
27
        <div class="two-cols clearfix dotted">
28
                <div class="rt centered">
29
                        <img alt="THINK ABOUT IT" src="/static/medialibrary/2012/06/behind_okeanos.png">
30
                </div>
31
                <div class="lt">
32
                        <h2 style="color:#4085A6;">PROJECT</h2>
33
                    <div>
34
                            <p>You wake up one morning and you need a new computer with a specific operating system and hardware requirements (or 10 new computers). You also need 10GB of storage space to store some new content you just got your hands on (or 50GB ;-)).</p>
35
                            <a href="#" class="submit">CREATE PROJECT</a>
36
                    </div>
37
                </div>
38
        </div>
39
        <div class="two-cols clearfix dotted">
40
                <div class="rt centered">
41
                        <img alt="THINK ABOUT IT" src="/static/medialibrary/2012/06/from_athens.png">
42
                </div>
43
                <div class="lt">
44
                        <h2 style="color:#EF4F54;">ORGANISATION</h2>
45
                    <div>
46
                            <p>You wake up one morning and you need a new computer with a specific operating system and hardware requirements (or 10 new computers). You also need 10GB of storage space to store some new content you just got your hands on (or 50GB ;-)).</p>
47
                            <a href="#" class="submit">CREATE ORGANISATION</a>
48
                    </div>
49
                </div>
50
        </div>
51
        <div class="two-cols clearfix dotted">
52
                <div class="rt centered">
53
                        <img alt="THINK ABOUT IT" src="/static/medialibrary/2012/04/researcher.png">
54
                </div>
55
                <div class="lt">
56
                        <h2 style="color:#FF7CA4;">LAB</h2>
57
                    <div>
58
                            <p>You wake up one morning and you need a new computer with a specific operating system and hardware requirements (or 10 new computers). You also need 10GB of storage space to store some new content you just got your hands on (or 50GB ;-)).</p>
59
                            <a href="#" class="submit">CREATE LAB</a>
60
                    </div>
61
                </div>
62
        </div>
63
</div>
64

    
65
{% endblock body %}