Skip to content
This repository has been archived by the owner on May 12, 2019. It is now read-only.

Commit

Permalink
added jQuery dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Sep 9, 2015
1 parent 5541b0d commit b8b815f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 35 deletions.
56 changes: 24 additions & 32 deletions default.hbs
Original file line number Diff line number Diff line change
@@ -1,36 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />

<title>{{meta_title}}</title>

{{> meta}}

<link rel="stylesheet" type="text/css" href="{{asset "css/uno.css"}}" />

{{ghost_head}}

</head>
<body class="{{body_class}}">

<section id="menu-button" class="expanded">
<a><i class="icon icon-list"></i></a>
</section>

{{> aside}}

<main>
<section id="search-results"></section>
<section class="content">
{{{body}}}
{{> footer}}
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>{{meta_title}}</title>
{{> meta}}
<link rel="stylesheet" type="text/css" href="{{asset "css/uno.css"}}" />
{{ghost_head}}
</head>
<body class="{{body_class}}">
<section id="menu-button" class="expanded">
<a><i class="icon icon-list"></i></a>
</section>
</main>

{{ghost_foot}}
<script type="text/javascript" src="{{asset "js/uno.js"}}"></script>
{{> google-analytics}}
</body>
{{> aside}}
<main>
<section id="search-results"></section>
<section class="content">
{{{body}}}
{{> footer}}
</section>
</main>
{{ghost_foot}}
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="{{asset "js/uno.js"}}"></script>
{{> google-analytics}}
</body>
</html>
7 changes: 4 additions & 3 deletions error.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
</div>
<div class="mayday">
<h2>
Houston, we've got a problem. <br>
Houston, 404 error appeared.
Houston, we've got a problem. <br>
Houston, 404 error appeared.
</h2>
<hr class="divider short">
<h2>
What happens now?
What happens now?
</h2>
</div>
<div class="astro-options">
Expand All @@ -31,6 +31,7 @@
</section>
</article>
{{ghost_foot}}
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="{{asset "js/uno.js"}}"></script>
{{> google-analytics}}
</body>
Expand Down

0 comments on commit b8b815f

Please sign in to comment.