| <!DOCTYPE html>
<html>
    <head>
        <title>{{ title }}</title>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
    </head>
    <body>
        
        <h1>{{ title }}</h1>
        
        {{ if hasLogic }}
            {{ include partial }}
        {{ endif }}
        
        <ul>
        {{ for items as item }}
        <li>{{ item }}</li>
        {{ endfor }}
        </ul>
        
    </body>
</html>
 |