feat.js
Version:
The Feat.JS Framework; Easy, powerful and fast.
27 lines (24 loc) • 897 B
HTML
<Include src="test/pages/parts/header.html" />
<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>
<If condition="{{ posts.length > 0 }}">
<p>
<strong>{{ posts.length }} posts are current listed.</strong>
</p>
</if>
<Foreach in="posts" as="post">
<If condition="{{post.published === true}}">
<h2>{{ post.title }}</h2>
<p>{{ post.body }}</p>
<a href="/post/{{ post.title }}" style="color: black !important;">Read more</a>
<br>
</If>
</Foreach>
</Container>
</body>