adding navigation to page layout - fix #20
This commit is contained in:
parent
3c48ef9d4f
commit
d98d4e1ab7
1 changed files with 31 additions and 0 deletions
|
@ -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>
|
||||
·
|
||||
{% endfor %}
|
||||
<a href="{{ site.baseurl }}/about/">About</a>
|
||||
·
|
||||
<a href="{{ site.baseurl }}/download/">Download</a>
|
||||
·
|
||||
<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>
|
||||
|
|
Loading…
Reference in a new issue