Changeset 10879

Show
Ignore:
Timestamp:
09/22/11 09:43:23 (20 months ago)
Author:
edent
Message:

main page

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • ossiedev/trunk/tools/cornetApps/templates/HtmlPages/main_page.html

    r10865 r10879  
    55{% endblock %} 
    66{% block content %} 
    7 <img id="bg" src="{{STATIC_URL}}pics/ictasbackground.jpg" alt="background image"/> 
     7        <img id="bg" src="{{STATIC_URL}}pics/ictasbackground.jpg" alt="background image"/> 
    88        {% if user.username %} 
    99                <p>Welcome {{user.username}}!</p> 
     10                <a href="some link">a link</a> 
    1011                <!--<p> View <a href="/floor1/">Floor 1</a></p>--> 
    11                 <p> View <a href="{{URL_ROOT}}ossie/">OSSIE</a></p> 
     12                <p> View <a href="ossie/">OSSIE</a></p> 
    1213                <ul> 
    1314                        {{user.username}}'s waveforms: 
     
    2021                        {% endif %} 
    2122                </ul> 
    22                 <a href="{{URL_ROOT}}logout/">Logout here</a> 
     23                <a href="logout/">Logout here</a> 
    2324        {% else %} 
    2425                <p> Welcome anonymous user!</p> 
    25                 <p><a href="{{URL_ROOT}}login/">Login</a> if you have not done so already.</p> 
    26                 <p>If you do not have an account, please <a href="{{URL_ROOT}}register/">register here</a>.</p> 
     26                <p><a href="login/">Login</a> if you have not done so already.</p> 
     27                <p>If you do not have an account, please <a href="register/">register here</a>.</p> 
    2728        {% endif %} 
    2829{% endblock %}