mavo is a template language created in 2015 by Lea Verou.
#517on PLDB | 9Years Old |
git clone https://github.com/mavoweb/mavo
Create web applications entirely by writing HTML and CSS!
<main mv-app="todo" mv-storage="local" mv-mode="edit">
<header>
<h1>My tasks</h1>
<p>[count(done)] done out of [count(task)] total</p>
</header>
<ul>
<li property="task" mv-multiple>
<label>
<input property="done" type="checkbox" />
<span property="taskTitle">Do stuff</span>
</label>
</li>
<button mv-action="delete(task where done)">
Clear Completed
</button>
</ul>
</main>