packages feed

Bravo-0.1.0: src/Examples/Example01.tpl

    The main HTML template

{{tpl main}}
<html>
<head><title>Bravo template example 1</title></head>
<body>
    <h1>Employees list</h1>
    <table>
    <thead>
        <th>First name</th>
        <th>Last name</th>
        <th>Age</th>
        <th>Married</th>
    </thead>
    <tbody>
{{:$users}}
    </tbody>
    </table>
</body>
</html>
{{endtpl}}


    HTML table row template for a single user

{{tpl user}}
    <tr>
        <td>{{:$firstName}}</td>
        <td>{{:$lastName}}</td>
        <td>{{:show $(age :: Int)}}</td>
        <td>{{if $(married :: Bool)}}Yes{{else}}No{{endif}}</td>
    </tr>
{{endtpl}}