You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.5 KiB
65 lines
1.5 KiB
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$('#ymarks')
|
|
.tablesorter({widgets: ['zebra']})
|
|
.tablesorterPager({container: $('#pager'), size: 5, positionFixed: false});
|
|
});
|
|
</script>
|
|
|
|
<!-- Table -->
|
|
<table class="ytable" id="ymarks">
|
|
<colgroup>
|
|
<col width="25"/>
|
|
<col width="25"/>
|
|
<col width="425"/>
|
|
<col width="150"/>
|
|
<col width="150"/>
|
|
<col width="25"/>
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th class="{sorter: false}"></th>
|
|
<th></th>
|
|
<th>Title</th>
|
|
<th>Tags</th>
|
|
<th>Date</th>
|
|
<th class="{sorter: false}"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
#{bookmarks}#
|
|
<tr>
|
|
<td>
|
|
<input type="checkbox" value="true" />
|
|
</td>
|
|
<td>
|
|
#(public)#
|
|
<img src="img-2/lock.png" alt="private bookmark" title="private bookmark"/>
|
|
::
|
|
<img src="img-2/world2.png" alt="public bookmark" title="public bookmark"/>
|
|
#(/public)#
|
|
</td>
|
|
<td>
|
|
<h3 class="linktitle">#[title]#</h3>
|
|
<p class="desc">#[description]#</p>
|
|
<p class="url"><a href="#[link]#">#[link]#</a></p>
|
|
</td>
|
|
<td>#{tags}# #[tag]#,#{/tags}#</td>
|
|
<td>
|
|
#[date]#
|
|
</td>
|
|
<td>
|
|
<a href="Bookmarks.html?edit=#[hash]#">
|
|
<img src="img-2/pencil.png" alt="edit bookmark" title="edit bookmark" border="0" />
|
|
</a>
|
|
<img src="img-2/cancel.png" alt="delete bookmark" title="delete bookmark"/>
|
|
</td>
|
|
</tr>
|
|
#{/bookmarks}#
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
|