mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
62 lines
1.6 KiB
Text
62 lines
1.6 KiB
Text
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<% if (typeof title != 'undefined') { %>
|
|
<title><%= title %> - <%= site %></title>
|
|
<% } else { %>
|
|
<title><%= site %></title>
|
|
<% } %>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<link rel="icon" type="image/gif" href="/images/s.gif">
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
<% for (var i in styles) { %>
|
|
<link rel="stylesheet" href="/css/<%= styles[i] %>.css">
|
|
<% } %>
|
|
<link rel="alternate" type="application/rss+xml" href="http://samhuri.net/feed.xml" title="samhuri.net">
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<h1><a href="/">samhuri.net</a></h1>
|
|
<h4>by Sami Samhuri</h4>
|
|
</header>
|
|
|
|
<nav>
|
|
<a href="/archive">posts</a>
|
|
<a href="/projects">projects</a>
|
|
<a href="https://twitter.com/_sjs">twitter</a>
|
|
<a href="mailto:sami@samhuri.net">sami@samhuri.net</a>
|
|
</nav>
|
|
|
|
<%- yield %>
|
|
|
|
<footer>
|
|
Copyright © 2006 - <%= new Date().getFullYear() %> <a href="mailto:sami@samhuri.net">Sami Samhuri</a>
|
|
</footer>
|
|
|
|
<% for (var i in scripts) { %>
|
|
<script src="/js/<%= scripts[i] %>.js"></script>
|
|
<% } %>
|
|
|
|
<script>
|
|
var _gaq = _gaq || []
|
|
_gaq.push( ['_setAccount', 'UA-214054-5']
|
|
, ['_trackPageview']
|
|
)
|
|
|
|
;(function() {
|
|
var ga = document.createElement('script')
|
|
ga.type = 'text/javascript'
|
|
ga.async = true
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'
|
|
var s = document.getElementsByTagName('script')[0]
|
|
s.parentNode.insertBefore(ga, s)
|
|
}())
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|