57 lines
2.2 KiB
HTML
57 lines
2.2 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>ianonavy{% block title %}{% endblock title %}</title>
|
|
|
|
<meta charset="utf-8" />
|
|
<meta name="keywords" content="ianonavy, freelance, android, web, developer, ian, adam, naval">
|
|
<meta name="description" content="Portfolio for software engineer and sysadmin Ian Adam Naval.">
|
|
<meta name="author" content="Ian Adam Naval">
|
|
<meta name="robots" content="index,follow">
|
|
|
|
<link href="http://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet" type="text/css" media="all">
|
|
<link href="http://fonts.googleapis.com/css?family=Ubuntu+Mono" rel="stylesheet" type="text/css" media="all">
|
|
<link href="{{ url_for('static', filename='css/style.css') }}"rel="stylesheet" type="text/css" media="screen" />
|
|
{% block extrastyle %}{% endblock extrastyle %}
|
|
</head>
|
|
|
|
<body>
|
|
<header id="header">
|
|
<a href="/"><img id="logo" src="{{ url_for('static', filename='img/logo-196.png') }}" alt="ianonavy logo" /></a>
|
|
<h1 id="name"><a href="/">Ian Adam Naval</a></h1>
|
|
<h2 id="tagline">Software engineer/sysadmin from Los Angeles, CA</h2>
|
|
|
|
<nav id="nav">
|
|
<ul>
|
|
<li><a href="{{ url_for('home') }}#portfolio">Portfolio</a></li>
|
|
<li><a href="{{ url_for('home') }}#about">About</a></li>
|
|
<li><a href="{{ url_for('home') }}#contact">Contact</a></li>
|
|
<li><a href="{{ url_for('labs') }}">Labs</a></li>
|
|
<li><a href="http://www.github.com/ianonavy">Code</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<div id="main">
|
|
{% block main %}
|
|
{% endblock main %}
|
|
</div>
|
|
|
|
<footer id="footer">
|
|
{% block footer %}Copyright © 2014 Ian Adam Naval. All rights reserved.{% endblock footer %}
|
|
</footer>
|
|
|
|
<script type="text/javascript">
|
|
var _gaq = _gaq || [];
|
|
_gaq.push(['_setAccount', 'UA-33981209-1']);
|
|
_gaq.push(['_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>
|