mirror of
https://github.com/haml/haml.git
synced 2022-11-09 12:33:31 -05:00
23 lines
478 B
Text
23 lines
478 B
Text
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
<head>
|
|
<title>Simple Benchmark</title>
|
|
</head>
|
|
<body>
|
|
<h1>#{ header }</h1>
|
|
<?rb unless item.empty? ?>
|
|
<ul>
|
|
<?rb for i in item ?>
|
|
<?rb if i[:current] ?>
|
|
<li><strong>#{ i[:name] }</strong></li>
|
|
<?rb else ?>
|
|
<li><a href="#{ i[:url] }">#{ i[:name] }</a></li>
|
|
<?rb end ?>
|
|
<?rb end ?>
|
|
</ul>
|
|
<?rb else ?>
|
|
<p>The list is empty.</p>
|
|
<?rb end ?>
|
|
</body>
|
|
</html>
|