rule
Version:
Coffeescript friendly css selector based templating
33 lines (28 loc) • 591 B
HTML
<html>
<head>
<meta charset="utf-8">
<title>Examples</title>
<script src="../rule.js"></script>
</head>
<body>
<div class="simple">
<span class="content"></span>
</div>
<div class="book">
<h1 class="title"></h1>
<div class="author">
<div class="name">
<span class="first"></span>
<span class="last"></span>
</div>
</div>
</div>
<ul class="list">
<li class="item"><span class="content"></span></li>
</ul>
<ol class="recursive">
<li class="location"></li>
</ol>
<script src="example.js"></script>
</body>
</html>