<?php /*1192278131*/ print('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
    <head>
        <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
        <title>Hello, ZOMGWTFLOL!</title>
        
        <script type="text/javascript" charset="utf-8">
            function teszt(a, b)
            {
                return ((a + b) / (a - b));
            }
        </script>
    </head>
    <body>
        <p>Hello, '
); if (isset($this->templateVariables['name'])):  print($this->templateVariables['name']);  else: print('World'); endif; print('!</p>
        <ul>
        '
); for ($i 0$i 10; ++$i): print('
            <li>'
); print($i+1); print('. elem</li>
        '
); endfor; print('
        </ul>
        
        <ol>
        '
); foreach ($this->templateVariables['list'] as $key => $value): print('
            <li>'
); print($value); print(' (kulcs: '); print($key); print(')</li>
        '
); endforeach; print('
        </ol>
        
        '
); $this->templateVariables['raklap'] = 'LOLCATS'; print('
        '
); $this->includeTemplate('footer.tpl', array('footerName'$this->templateVariables['raklap'])); print('
        
        '
); if (isset($this->templateVariables['footerName'])): print('
            <p>van footerName</p>
        '
); else: print('
            <p>nincs footerName</p>
        '
); endif; print('
    </body>
</html>'
); ?>