48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| 	<head>
 | |
| 		<meta charset='utf-8' />
 | |
| 		<meta name="description" content="{{ site.tagline }}" />
 | |
| 
 | |
| 		<link rel="stylesheet" type="text/css" media="screen" href="style/stylesheet.css">
 | |
| 		<link rel="icon" type="image/png" href="images/favicon.png" />
 | |
| 
 | |
| 		<title>{{ page.title }}</title>
 | |
| 	</head>
 | |
| 
 | |
| 	<body>
 | |
| 
 | |
| 		<div id="header_wrap" class="outer">
 | |
| 			<header class="inner">
 | |
| 				<h1 id="project_title">
 | |
| 					<a href="index.html">{% include solaar.svg %} {{ site.title }}</a>
 | |
| 				</h1>
 | |
| 			</header>
 | |
| 		</div>
 | |
| 
 | |
| 		<div id="main_content_wrap" class="outer">
 | |
| 			<section id="main_content" class="inner">
 | |
| 				{{ content }}
 | |
| 			</section>
 | |
| 		</div>
 | |
| 
 | |
| 		<div id="footer_wrap" class="outer">
 | |
| 			<footer class="inner">
 | |
| 				<p class="copyright"><a href="{{ site.repository }}">{{ site.title }}</a> maintained by <a href="{{ site.owner_url }}">{{ site.owner }}</a></p>
 | |
| 				<p><a href="https://github.com/jsncostello/slate">Slate</a> theme by <a href="https://github.com/jsncostello">Jason Costello</a></p>
 | |
| 			</footer>
 | |
| 		</div>
 | |
| 
 | |
| 		<script type="text/javascript">
 | |
| 			var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
 | |
| 			document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
 | |
| 		</script>
 | |
| 		<script type="text/javascript">
 | |
| 			try {
 | |
| 				var pageTracker = _gat._getTracker("{{ site.ga_id }}");
 | |
| 				pageTracker._trackPageview();
 | |
| 			} catch(err) {}
 | |
| 		</script>
 | |
| 	</body>
 | |
| </html>
 |