summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/todolist.tpl
blob: f929ccdb3e4e8c63b7da9f37cde4ff87b966a782 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{include file="header.tpl" title="Todo List"}
<div align="center"><h1>Todo List</h1></div>
{foreach from=$todos key=todopackage item=todo}
<h2>{$todopackage}</h2>
{section name=todo loop=$todo}
<h3>{$todo[todo].link}</h3>
<ul>
{section name=t loop=$todo[todo].todos}
    <li>{$todo[todo].todos[t]}</li>
{/section}
</ul>
{/section}
{/foreach}
{include file="footer.tpl"}