-rw-r--r-- templates/stagit/repo/repo-table-header.html.include
1 {#- This block is rendered at the top of every page. -#} 2 3 <table id="head"> 4 <tr> 5 <td width="32px" rowspan="2"><a href="{{ host }}"><img src="{{ host }}/avatar.png" id="avatar"/></a></td> 6 <td rowspan="2"><a href="{{ host }}">{{ host }}</a> / <a href="{{ host }}">code</a> / <a href="{{ host }}/{{ name }}">{{ name }}</a></td> 7 <td class="link"><a href="{{ host }}/posts.html">posts</a></td> 8 </tr> 9 <tr> 10 <td class="link"><a href="{{ host }}/about.html">about</a></td> 11 </tr> 12 </table> 13 <hr> 14 15 <table> 16 <tr><td><span class="desc">{{ description }}</span></td></tr> 17 <tr class="url"><td>git clone <a href="{{ host }}/{{ name }}">{{ host }}/{{ name }}</a></td></tr> 18 <tr><td> 19 <a href="{{ host }}/{{ name }}/files.html">Files</a> | <a href="{{ host }}/{{ name }}/refs.html">Refs</a> 20 {% if readme %} | <a href="{{ host }}/{{ name }}/blob/{{ readme.href }}">Readme</a>{% endif %} 21 {% if license %} | <a href="{{ host }}/{{ name }}/blob/{{ license.href }}">License</a>{% endif %} 22 </td></tr> 23 </table> 24 <hr> 25