grunt-flats
Version:
Grunt task for generating static layouts from templated partials.
29 lines • 655 B
HTML
<html lang="en">
<head>
<title>Flats</title>
</head>
<body>
<div class="container-main">
<header>
<img src="/images/logo.png" alt="Logo" />
<ul class="nav-primary">
<li><a href="#">Item 1</a></li>
<li><a href="#">Item 2</a></li>
<li><a href="#">Item 3</a></li>
</ul>
</header>
<h1>Article</h1>
<p>Dummy article content</p>
<aside>
<div class="module-promo">
<img src="/images/new-promo.jpg" alt="Placeholder" />
<h2>New Module Title</h2>
<a href="/">Module link</a>
</div>
</aside>
<footer>
<p>© Super Mega Global Corporation Inc.</p>
</footer>
</div></body>
</html>