web/hgbook/templates/index.html~
changeset 2 52d12eb31c30
parent 1 672eaaab9204
child 3 6cee07c589cb
equal deleted inserted replaced
1:672eaaab9204 2:52d12eb31c30
     1 <html>
       
     2   <head>
       
     3     <title>Software Engineering for Engineers and Scientists</title>
       
     4     <link rel="stylesheet" href="/review/support/styles.css" type="text/css"/>
       
     5 
       
     6     <link rel="shortcut icon" type="image/png" href="/support/figs/favicon.png"/>
       
     7     <script type="text/javascript" src="/review/support/jquery.js"></script>
       
     8 
       
     9       <script type="text/javascript" src="/review/support/form.js"></script>
       
    10     <script type="text/javascript" src="/review/support/hsbook.js"></script>
       
    11   </head>
       
    12 
       
    13 <body>
       
    14     
       
    15 <div class="navheader"><h1 class="booktitle">SEES Documentation<div class="authors">by The FOSSEE TEAM</div></h1></div>
       
    16 <div class="book"> 
       
    17 {% if resp_dict %}
       
    18 {% for item in resp_dict %}
       
    19 <li>
       
    20 <a href={{ item(0) }}>{{ item(1) }}</a>
       
    21 </li>
       
    22 {% endfor %}
       
    23 {% endif %}
       
    24 
       
    25 
       
    26 
       
    27 <!-- <ul> 
       
    28 {% if resp_dict %}
       
    29 {% for key, value in resp_dict.items %}
       
    30 <li>   <a href={{ key }}>{{ val }}</a></li>
       
    31 {% endfor %} {% endif %}
       
    32 
       
    33 </ul>
       
    34 -->
       
    35 </div>
       
    36 
       
    37 
       
    38 
       
    39     
       
    40 </body>
       
    41 </html>
       
    42