~mhall119/loco-team-portal/fixes-619886

« back to all changes in this revision

Viewing changes to loco_directory/templates/index.html

  • Committer: Chris Johnston
  • Date: 2010-08-17 23:20:44 UTC
  • mfrom: (239.1.3 loco-directory)
  • Revision ID: chrisjohnston@ubuntu.com-20100817232044-bs5p1qgcnjl0u64u
Adds new map to front page from mhall119

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
{% block extrahead %}
7
7
{{block.super}}
8
8
        <link rel="stylesheet" type="text/css" href="{{MEDIA_URL}}/css/twidenash.css" />
 
9
        <link rel="stylesheet" type="text/css" href="{{MEDIA_URL}}/css/continents.css" />
9
10
{% endblock %}
10
11
 
11
12
{% block content %}
16
17
        <p>
17
18
          {% trans "List of all Ubuntu LoCo Teams, with full information such as contact, web pages, mailing list, and more." %}
18
19
          {% trans "If there are no teams in your country/region/area, you will be able to add a team in the near future." %}
 
20
          {% trans "Select your continent below to find an Ubuntu LoCo Team near you." %}
19
21
        </p>
 
22
        <ul id="continents">
 
23
            <li id="northamerica">
 
24
                <a href="{% url team-list %}#North%20America">
 
25
                </a>
 
26
            </li>
 
27
            <li id="southamerica">
 
28
                        <a href="{% url team-list %}#South%20America">
 
29
                </a>
 
30
            </li>    
 
31
            <li id="asia">
 
32
                <a href="{% url team-list %}#Asia">
 
33
                </a>
 
34
            </li>
 
35
            <li id="australia">
 
36
                <a href="{% url team-list %}#Australia">
 
37
                </a>
 
38
            </li>
 
39
            <li id="africa">
 
40
                <a href="{% url team-list %}#Africa">
 
41
                </a>
 
42
            </li>
 
43
            <li id="europe">
 
44
                <a href="{% url team-list %}#Europe">
 
45
                </a>
 
46
            </li>    
 
47
        </ul>
20
48
        </article>
21
49
                <hr class="divide" />
22
50