Enable relative permalinks and drop the site.baseurl from post links in index
[blog] / _layouts / default.html
1 <!DOCTYPE html>
2 <html lang="en">
3
4   {% include head.html %}
5
6   <body>
7
8     <div class="container content">
9       <div class="masthead">
10         <h3 class="masthead-title">
11           <a href="{{ site.baseurl }}" title="Home">{{ site.title }}</a>
12           <small>{{ site.tagline }}</small>
13         </h3>
14       </div>
15
16       {{ content }}
17
18       <div class="footer">
19         <p>
20           &copy; {{ site.time | date: '%Y' }}. All rights reserved.
21         </p>
22       </div>
23     </div>
24
25   </body>
26 </html>