You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
48 lines
1.2 KiB
11 years ago
|
<!DOCTYPE html>
|
||
|
|
||
|
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en" > <![endif]-->
|
||
|
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width">
|
||
|
<title>LyricsNode - {{ title }}</title>
|
||
|
|
||
|
<link rel='stylesheet' href='/static/stylesheets/normalize.css'>
|
||
|
<link rel="stylesheet" href="/static/stylesheets/foundation.min.css">
|
||
|
|
||
|
<script src="/static/javascripts/vendor/custom.modernizr.js"></script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<nav class='top-bar'>
|
||
|
<ul class='title-area'>
|
||
|
<li class='name'>
|
||
|
<h1><a href='/'>LyricsNode</a></h1>
|
||
|
</li>
|
||
|
</ul>
|
||
|
|
||
|
<section class='top-bar-section'>
|
||
|
<ul class='left'>
|
||
|
<li><a href='#'>Round</a></li>
|
||
|
<li><a href='#'>Database</a></li>
|
||
|
</ul>
|
||
|
</section>
|
||
|
</nav>
|
||
|
|
||
|
{% block styles %}{% endblock %}
|
||
|
{% block content %}{% endblock %}
|
||
|
|
||
|
<script>
|
||
|
document.write('<script src=/static/javascripts/vendor/'
|
||
|
+ ('__proto__' in {} ? 'zepto' : 'jquery')
|
||
|
+ '.js><\/script>');
|
||
|
</script>
|
||
|
<script src='/static/javascripts/foundation.min.js'></script>
|
||
|
<script>
|
||
|
$(document).foundation();
|
||
|
</script>
|
||
|
|
||
|
{% block scripts %}{% endblock %}
|
||
|
</body>
|
||
|
</html>
|