Updated theme to use blog data from admin
[ghost-theme-willow.git] / default.hbs
1 <!DOCTYPE html>
2 <html>
3 <head>
4 {{> "head"}}
5 {{ghost_head}}
6 </head>
7 <body class="{{body_class}}">
8 <div id="wrapper" class="wrapper">
9 <div id="viewport" class="viewport">
10 <div id="sidebar" class="sidebar">
11 <div class="sidebar-header" style="background-image: url({{@blog.cover}})">
12 <a href="{{@blog.url}}" title="{{@blog.title}}">
13 <img src="{{@blog.logo}}" alt="{{@blog.title}}">
14 </a>
15 </div>
16
17 <h1>
18 <a href="{{@blog.url}}" title="{{@blog.title}}">
19 {{@blog.title}}
20 </a>
21 </h1>
22
23 <h2>
24 {{@blog.description}}
25 </h2>
26
27 {{> "social-links"}}
28 {{navigation}}
29 </div>
30
31 <div class="content" id="content">
32 {{> "mobile-header"}}
33
34 <div class="main-section">
35 {{{body}}}
36 </div>
37 </div>
38 </div>
39 </div>
40
41 <script type="text/javascript" src="{{asset "js/script.js"}}"></script>
42 {{ghost_foot}}
43 </body>
44 </html>