SEESenv/web/hgbook/templates/index.html
author amit@thunder
Wed, 10 Mar 2010 17:39:26 +0530
changeset 45 b5bff924ef69
parent 2 52d12eb31c30
permissions -rw-r--r--
Some more changes to soup is made in final html also comment.html has been changed so the links don't appear
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     1
<html>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     2
  <head>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     3
    <title>Software Engineering for Engineers and Scientists</title>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     4
    <link rel="stylesheet" href="/review/support/styles.css" type="text/css"/>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     5
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     6
    <link rel="shortcut icon" type="image/png" href="/support/figs/favicon.png"/>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     7
    <script type="text/javascript" src="/review/support/jquery.js"></script>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     8
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
     9
      <script type="text/javascript" src="/review/support/form.js"></script>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    10
    <script type="text/javascript" src="/review/support/hsbook.js"></script>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    11
  </head>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    12
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    13
<body>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    14
    
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    15
<div class="navheader"><h1 class="booktitle">SEES Documentation<div class="authors">by The FOSSEE TEAM</div></h1></div>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    16
<div class="book"> 
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    17
{% if resp_dict %}
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    18
{% for key,value in resp_dict %}
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    19
<li>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    20
<a href={{ key }}>{{ value }}</a>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    21
</li>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    22
{% endfor %}
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    23
{% endif %}
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    24
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    25
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    26
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    27
<!-- <ul> 
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    28
{% if resp_dict %}
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    29
{% for key, value in resp_dict.items %}
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    30
<li>   <a href={{ key }}>{{ val }}</a></li>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    31
{% endfor %} {% endif %}
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    32
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    33
</ul>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    34
-->
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    35
</div>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    36
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    37
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    38
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    39
    
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    40
</body>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    41
</html>
8083d21c0020 The first commit of all the required files for the review app
amit@thunder
parents:
diff changeset
    42