Added robots file
[ghost-theme-work.git] / default.hbs
1 <!DOCTYPE html>
2 <html lang="{{@site.locale}}">
3 <head>
4
5 {{> theme_head}}
6
7 {{!-- Ghost outputs important style and meta data with this tag --}}
8 {{ghost_head}}
9
10 </head>
11 <body class="{{body_class}} nav-closed">
12
13 <div class="main-container">
14
15 {{> theme_header}}
16 {{{body}}}
17
18 </div>
19
20 {{> theme_footer}}
21
22 {{!-- Ghost Content API --}}
23 <script type="text/javascript" src="https://unpkg.com/@tryghost/content-api@1.0.0/umd/content-api.min.js"></script>
24
25 {{!-- 3rd party scripts --}}
26 <script type="text/javascript" src="{{asset "js/libraries.js"}}"></script>
27
28 {{!-- The main JavaScript file for Tawau --}}
29 {{#if pagination.pages}}
30 <script>
31 var maxPages = parseInt('{{pagination.pages}}');
32 </script>
33 {{/if}}
34 <script type="text/javascript" src="{{asset "js/main.js"}}"></script>
35
36 {{!-- ghosthunter search --}}
37 <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
38 {{!-- <script type="text/javascript" src="{{asset "ghostHunter/dist/jquery.ghosthunter-nodependency.js"}}"></script> --}}
39 <script type="text/javascript" src="{{asset "ghostHunter/dist/jquery.ghosthunter.js"}}"></script>
40 <script>
41 $("#search-field").ghostHunter({
42 results: "#results"
43 });
44 </script>
45
46 {{!-- Ghost outputs important scripts and data with this tag --}}
47 {{ghost_foot}}
48 </body>
49 </html>