Add space between logo and title
[web.git] / _layouts / default.html
1 <!doctype html>
2 <!--[if IE 9]>
3 <html class="lt-ie10" lang="en"> <![endif]-->
4 <html class="no-js" lang="en" data-useragent="Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; Trident/6.0)">
5 <head>
6 <meta charset="utf-8"/>
7 <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
8 <title>{{page.title}}</title>
9
10
11 <meta name="description"
12 content="Linux Embedded Development Environment, an embedded Linux distribution that makes it easy for developers, system administrators or other Linux enthusiasts to build and customize software for embedded devices, especially wireless routers."/>
13
14 <link rel="stylesheet" href="{{site.prefix}}css/foundation.css"/>
15 <link rel="stylesheet" href="{{site.prefix}}css/font-awesome.css"/>
16 <link rel="stylesheet" href="{{site.prefix}}css/coderay.css"/>
17 <link rel="stylesheet" href="{{site.prefix}}css/asciidoctor.css"/>
18 <link rel="stylesheet" href="{{site.prefix}}css/lede.css"/>
19 <script src="{{site.prefix}}js/vendor/modernizr.js"></script>
20 <script src="{{site.prefix}}js/toc.js"></script>
21 </head>
22 <body>
23
24
25 <!-- Nav Bar -->
26
27 <nav class="top-bar" data-topbar>
28 <ul class="title-area">
29 <!-- Title Area -->
30 <li class="name">
31 <h1>
32 <a href="#">
33 <img src="{{site.prefix}}logo/logo_small.png"></img>
34 <span class="top-bar-title">{{page.title}}</span>
35 </a>
36 </h1>
37 </li>
38 <li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
39 </ul>
40 <section class="top-bar-section">
41 <!-- Right Nav Section -->
42 <ul class="right">
43 {% include top_nav.html %}
44 </ul>
45 </section>
46 </nav>
47 <!-- End Nav -->
48
49
50 <!-- Main Page Content and Sidebar -->
51
52 <div class="row">
53
54 <!-- Main Blog Content -->
55 <div class="large-9 columns" role="content">
56
57 {{ content }}
58
59 </div>
60
61 <!-- End Main Content -->
62
63 <!-- Sidebar -->
64
65 <aside class="large-3 columns">
66 {% if page.url contains '/docs/' %}
67 {% include docs_nav.html %}
68 {% else %}
69 {% include side_nav.html %}
70 {% endif %}
71 </aside>
72
73 <!-- End Sidebar -->
74 </div>
75
76 <!-- End Main Content and Sidebar -->
77
78
79 <!-- Footer -->
80
81 <footer class="row">
82 <div class="large-12 columns">
83 <hr/>
84 <div class="row">
85 <div class="large-12 columns">
86 <p>Last updated {{ page.last_modified_at | date: '%Y-%m-%d %H:%M:%S' }}</p>
87 </div>
88 </div>
89 </div>
90 </footer>
91
92 <script src="{{site.prefix}}js/vendor/jquery.js"></script>
93 <script src="{{site.prefix}}js/foundation.min.js"></script>
94 <script>
95 $(document).foundation();
96
97 var doc = document.documentElement;
98 doc.setAttribute('data-useragent', navigator.userAgent);
99 </script>
100 </body>
101 </html>