Skip to content

Commit

Permalink
Merge branch 'master' of github.com:kachayev/gearoscope
Browse files Browse the repository at this point in the history
  • Loading branch information
kachayev committed Jul 30, 2011
2 parents e6bbce9 + a7f25cc commit 4feeec1
Show file tree
Hide file tree
Showing 7 changed files with 87 additions and 0 deletions.
Empty file added static/css/style.css
Empty file.
13 changes: 13 additions & 0 deletions static/js/libs/dd_belatedpng.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions static/js/libs/jquery-1.6.2.min.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions static/js/libs/modernizr-1.7.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file added static/js/plugins.js
Empty file.
Empty file added static/js/scripts.js
Empty file.
54 changes: 54 additions & 0 deletions templates/layout.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!doctype html>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

<title>{% block title %}{% endblock %}</title>
<meta name="description" content="">
<meta name="author" content="Alexey Kachayev, Iurii Ogiienko">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link rel="shortcut icon" href="/static/favicon.ico">
<link rel="stylesheet" href="/static/css/style.css">
{% block css_addon %}{% endblock %}

<script src="/static/js/libs/modernizr-1.7.min.js"></script>
{% block js_header_addon %}{% endblock %}

</head>
<body>
<div id="container" class="clearfix">
<header>
{% block header %}{% endblock %}
</header>

<div id="main" role="main" class="clearfix">
{% block content %}{% endblock %}
</div>

<footer class="clearfix">
{% block footer %}{% endblock %}
</footer>
</div>

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>!window.jQuery && document.write(unescape('%3Cscript src="/static/js/libs/jquery-1.6.2.min.js"%3E%3C/script%3E'))</script>
<script src="/static/js/plugins.js"></script>

{% block js_addon %}{% endblock %}

<script src="/static/js/script.js"></script>

<!--[if lt IE 7 ]>
<script src="/static/js/libs/dd_belatedpng.js"></script>
<script> DD_belatedPNG.fix('img, .png_bg');</script>
<![endif]-->

</body>
</html>

0 comments on commit 4feeec1

Please sign in to comment.