feat.js
Version:
The Feat.JS Framework; Easy, powerful and fast.
24 lines (15 loc) • 695 B
HTML
<Include src="test/pages/parts/header" />
<body>
<Navigation title="My cool website" href="/">
<NavItem name="Home" href="/" />
<NavItem name="About" href="/about" />
<NavItem name="Counter" href="/counter" />
<NavItem name="Contact" href="mailto:{{ email }}" />
</Navigation>
<Container>
<h1>The count is currently <a feat:bind="counter"> 0 </a></h1>
<button feat:decrement="counter" class="btn btn-danger">-</button>
<button feat:reset="counter" class="btn btn-secondary">Reset</button>
<button feat:increment="counter" class="btn btn-success">+</button>
</Container>
</body>