web/hgbook/templates/index.html
author amit@thunder
Mon, 25 Jan 2010 18:56:45 +0530
changeset 0 8083d21c0020
permissions -rw-r--r--
The first commit of all the required files for the review app

<html>
  <head>
    <title>Software Engineering for Engineers and Scientists</title>
    <link rel="stylesheet" href="/review/support/styles.css" type="text/css"/>

    <link rel="shortcut icon" type="image/png" href="/support/figs/favicon.png"/>
    <script type="text/javascript" src="/review/support/jquery.js"></script>

      <script type="text/javascript" src="/review/support/form.js"></script>
    <script type="text/javascript" src="/review/support/hsbook.js"></script>
  </head>

<body>
    
<div class="navheader"><h1 class="booktitle">SEES Documentation<div class="authors">by The FOSSEE TEAM</div></h1></div>
<div class="book"> 
{% if resp_dict %}
{% for key,value in resp_dict %}
<li>
<a href={{ key }}>{{ value }}</a>
</li>
{% endfor %}
{% endif %}



<!-- <ul> 
{% if resp_dict %}
{% for key, value in resp_dict.items %}
<li>   <a href={{ key }}>{{ val }}</a></li>
{% endfor %} {% endif %}

</ul>
-->
</div>



    
</body>
</html>