Collin J. Doering
d5f2f56ec4
Removed all haml templates and returned to using the default hakyll style html templates. The main reason for this was to avoid the requirement for external tools that cannot be installed with cabal. Also as much as haml is nicer to read and write (in my opinion) it is in this case just adding another layer of needless abstraction. Perhaps in the future haml-like functionality can be added to default hakyll templates. Until then, follow the KISS mentality. Signed-off-by: Collin J. Doering <collin.doering@rekahsoft.ca>
60 lines
2.7 KiB
HTML
60 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<!--[if lt IE 7]> <html class="ie ie6" lang="en"> <![endif]-->
|
|
<!--[if IE 7]> <html class="ie ie7" lang="en" <![endif]-->
|
|
<!--[if IE 8]> <html class="ie ie8" lang="en"> <![endif]-->
|
|
<!-- [if (gte IE 9)|!(IE)]><!-->
|
|
<html class='en' manifest='manifest.appcache'>
|
|
<head>
|
|
<!-- Basic Page Needs -->
|
|
<meta charset='utf-8'>
|
|
<title>RekahSoft</title>
|
|
<meta content='The technical musings of a minimalist' name='description'>
|
|
<meta content='Collin Doering' name='author'>
|
|
<!-- Mobile Specific Metas -->
|
|
<meta content='width=device-width, initial-scale=1, maximum-scale=1' name='viewport'>
|
|
<!-- CSS -->
|
|
<link href='lib/css/base.css' rel='stylesheet'>
|
|
<link href='lib/css/skeleton.css' rel='stylesheet'>
|
|
<link href='lib/css/layout.css' rel='stylesheet'>
|
|
<!-- Custom styles for this template -->
|
|
<link href='default.css' rel='stylesheet'>
|
|
<!--[if lt IE 9]>
|
|
<script src='http://html5shim.googlecode.com/svn/trunk/html5.js'></script>
|
|
<![endif]-->
|
|
<!-- Favicons -->
|
|
<link href='/images/favicon.ico' rel='shortcut icon'>
|
|
<!-- / %link(rel="icon" type="image/png" href="/images/favicon.ico.png") -->
|
|
<!-- / %link(rel="icon" type="image/svg+xml" href="/images/favicon.svg") -->
|
|
<!-- / %link(rel="apple-touch-icon" href="lib/images/apple-touch-icon.png") -->
|
|
<!-- / %link(rel="apple-touch-icon" sizes="72x72" href="lib/images/apple-touch-icon-72x72.png") -->
|
|
<!-- / %link(rel="apple-touch-icon" sizes="114x114" href="lib/images/apple-touch-icon-114x114.png") -->
|
|
</head>
|
|
<body>
|
|
$partial("templates/partials/logo-banner.html")$
|
|
$partial("templates/partials/nav.html")$
|
|
<div class='container' id='status'>
|
|
<p class='message'></p>
|
|
<a class='close-button'>Close</a>
|
|
</div>
|
|
<div class='init loading' id='page-content'>
|
|
<noscript>
|
|
<div class='container' id='noscript-alert'>
|
|
<h1>This site requires javascript!</h1>
|
|
<p>
|
|
If you insist on not using javascript we provide a simplified website
|
|
<a class='alert-link' href='nojs/index.html'>here</a>
|
|
</p>
|
|
</div>
|
|
</noscript>
|
|
</div>
|
|
$partial("templates/partials/footer.html")$
|
|
<!-- External javascript libraries: JQuery, and JQuery-Address -->
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
<script src='lib/js/jquery-1.9.1.js' type='text/javascript'></script>
|
|
<script src='lib/js/jquery.address.js' type='text/javascript'></script>
|
|
<script src='https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML' type='text/javascript'></script>
|
|
<!-- Custom javascript for user interactivity -->
|
|
<script src='js/default.js' type='text/javascript'></script>
|
|
</body>
|
|
</html>
|