Statistics
| Branch: | Revision:

root / templates / base.html @ 86:001959e0f27c

History | View | Annotate | Download (2.3 kB)

1
{% load i18n %}
2
{% get_current_language as LANGUAGE_CODE %}
3
<!DOCTYPE html>
4
<html>
5
<head>
6
<title>{% trans "GRNET AAI Federation" %} • {% block title %}{% endblock %}</title>
7
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" lang="{{ LANGUAGE_CODE }}">
8
<meta name="robots" content="ALL">
9
<meta name="revisit-after" content="30 days">
10
<link href="/static/style.css" rel="stylesheet" type="text/css">
11
</head>
12

    
13
<body>
14

    
15
<div class="language-placeholder">
16
        <div class="language-container">
17
                <div class="language-div">
18
                        <div class="langtop">
19
                                <div></div>
20
                        </div>
21
                        <a href="/setlanguage/el">Ελληνικά</a>&nbsp;&nbsp;&nbsp;&nbsp;<a href="/setlanguage/en">English</a>
22
                </div>
23
        </div>
24
</div>
25

    
26
<div class="content">
27
        <div class="pagetop">
28
                <div></div>
29
        </div>
30
        <div class="aailogo-placeholder">
31
                <img src="/static/images/aai.gif">
32
        </div>
33
        <div class="header-placeholder">
34
                <div class="header-image-placeholder">
35
                        <a href="http://www.grnet.gr/"><img src="/static/images/grnet.png" alt="GRNET" title="GRNET"></a>
36
                </div>
37
                <div class="header-outer-text-placeholder"><div class="header-inner-text-placeholder">
38
                        <a href="http://aai.grnet.gr/">{% trans "GRNET Federation<br />Authentication & Authorization Infrastructure" %}</a>
39
                </div></div>
40
        </div>
41
        <div class="headermenu-placeholder">
42
                <a href="http://wayf.grnet.gr/">{% trans "Select your home institution" %}</a> 
43
<a href="http://aai.grnet.gr/participants/">{% trans "Participants" %}</a>
44
<a href="http://aai.grnet.gr/services/">{% trans "Services" %}</a> 
45
<a href="http://aai.grnet.gr/documentation/">{% trans "Documentation" %}</a> 
46
<a href="http://aai.grnet.gr/help/">{% trans "Help" %}</a> 
47
        </div>
48
        
49
        <h1>{% block header %}AAI{% endblock %}</h1>
50
        <div class="rbroundbox">
51
                <div class="rbtop">
52
                        <div></div>
53
                </div>
54
                
55
                <div class="rbcontent">
56
{% block content %}
57
{% endblock %}
58
                </div>
59
                <div class="rbbot">
60
                        <div></div>
61
                </div>
62
        </div>
63
        <p class="footer">{% trans "The Greek Research and Technology Network (GRNET) provides the Hellenic Academic, Research and Education community with advanced services, high-capacity national and international Internet connectivity, assisting the operation of all Universities, Technological Educational Institutions and Research Institutes in Greece."%}</p>
64
        <div class="pagebot">
65
                <div></div>
66
        </div>
67
</div>
68
</body>
69
</html>