adding navigation to page layout - fix #20

This commit is contained in:
Sagi Dayan 2014-09-23 12:06:48 +03:00
parent 3c48ef9d4f
commit d98d4e1ab7

View file

@ -77,8 +77,39 @@
<br>
<br>
{% endif %}
<section class="post-content">
<a name="topofpage"></a>
<header class="blog-header">
{% if site.logo %}
<a class="blog-logo" href="{{site.url}}" style="background-image: url('{{ site.logo }}')">{{ site.title }}</a>
<br><br>
{% endif %}
<h1 class="blog-title">{{ site.title }} - {{ page.title }}</h1>
<h2 class="blog-description">{{ site.description }}</h2>
<div class="custom-links">
{% for social in site.social %}
<a class="icon-{{ social.icon }}" href="{{ social.url }}">
<i class="fa fa-{{ social.icon }}"></i>
</a>
&nbsp;&nbsp;·&nbsp;&nbsp;
{% endfor %}
<a href="{{ site.baseurl }}/about/">About</a>
&nbsp;&nbsp;·&nbsp;&nbsp;
<a href="{{ site.baseurl }}/download/">Download</a>
&nbsp;&nbsp;·&nbsp;&nbsp;
<a href="{{ site.baseurl }}/help/">Help</a>
</div>
<br>
<center>
<!--[if IE]><b><p> Get a better browser! - This website dose not support Internet Explorer </p></b><![endif]-->
</center>
</header>
{{content}}
</section>
</div>