aboutsummaryrefslogtreecommitdiff
path: root/simple-entry-list.st
blob: 636069b6157c990fac8d42b7b0ee2665bf2f2fde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$header(title=feed_name)$

<ul>
$entries:{entry |
  <li><a href="$entry.link$">$entry.title$</a></li>
}$
</ul>

$footer()$

$!
Local Variables:
  mode: html
  coding: utf-8
End:
!$