hem-render-html
Version:
This module adds the ability to dynamically generate HTML files for your hem project.
20 lines (17 loc) • 520 B
HTML
<html>
<head>
<title>Example Site - Home</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>Home</h2>
<a href="/" class="current">Home</a>
<a href="/contact.html" class="">Contact</a>
<p>This is the home page my fine sir.</p>
<hr>
<p>Footer :: Goodbye!</p>
</body>
</html>