summaryrefslogtreecommitdiff
path: root/examples/bench/mako_inheritance/template.html
blob: 7c53bf157ea40b991ae681dec0edf1f83a4fc5d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<%inherit file="base.html"/>

    ${parent.greeting(user)}
    ${parent.greeting('me')}
    ${parent.greeting('world')}
 
    <h2>Loop</h2>
    % if list_items:
      <ul>
        % for list_item in list_items:
          <li>${list_item}</li>
        % endfor
      </ul>
    % endif