<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Templ test</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="utils.js"></script>
<script type="text/javascript" src="../templ.js"></script>
</head>
<body>
<h2>
Two if-statements, without else-branch and with else
<a href="index.html" class="back">Back to tests</a>
</h2>
<script type="html/template" id="tpl_example">
{% if 5 > 10 %}
5 greater then 10
{% endif %}
{% if 5 > 10 %}
5 greater then 10
{% else %}
<b>5 less then 10</b>
{% endif %}
</script>
<h3>Template</h3>
<pre id="template"></pre>
<h3>Data</h3>
<pre id="data">
{}
</pre>
<h3>Parsed result</h3>
<pre id="output"></pre>
</body>
</html> |