summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/todolist.tpl
blob: 5ab0bca2e7c20e4b85b803c160f2335fd31ed8e2 (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"}