hem-render-html
Version:
This module adds the ability to dynamically generate HTML files for your hem project.
20 lines (17 loc) • 522 B
HTML
<html>
<head>
<title>Example Site - Contact</title>
<script src="/application.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" href="/application.css" type="text/css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<h1>Example Site</h1>
<h2>Contact</h2>
<a href="/" class="">Home</a>
<a href="/contact.html" class="current">Contact</a>
<p>Conatact me in person or else!</p>
<hr>
<p>Footer :: Goodbye!</p>
</body>
</html>