source: bookmarkplugin/trunk/tracbookmark/templates/bookmark_list.html

Last change on this file was 18181, checked in by Cinc-th, 2 years ago

BookmarkPlugin: forgot to add Jinja2 template in [18180].

File size: 676 bytes
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:py="http://genshi.edgewall.org/">
3  <xi:include href="layout.html"/>
4  <head>
5    <title>Bookmarks</title>
6  </head>
7  <body>
8    <h1>Your bookmarks</h1>
9    <div style="margin-bottom: 3em;">
10    <ul class="bookmarks">
11      <py:for each="bookmark in bookmarks">
12        <li><a class="$bookmark.class_" href="$bookmark.href">
13          $bookmark.linkname</a> $bookmark.name (<a href="$bookmark.delete">Delete</a>)</li>
14      </py:for>
15    </ul>
16    </div>
17  </body>
18</html>
Note: See TracBrowser for help on using the repository browser.