Fixes in formatting

This commit is contained in:
Panos Sakkos 2015-11-18 01:33:00 +01:00
parent 622d95cc31
commit ba0d71b330
6 changed files with 21 additions and 19 deletions

View file

@ -6,21 +6,20 @@
<script> <script>
// Don't force http when serving the website locally // Don't force http when serving the website locally
if (!(window.location.host.startsWith("127.0.0.1")) && (window.location.protocol != "https:")) if (!(window.location.host.startsWith("127.0.0.1")) && (window.location.protocol != "https:"))
window.location.protocol = "https"; window.location.protocol = "https";
</script> </script>
{% endif %} {% endif %}
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="{{ site.description }}"> <meta name="description" content="{{site.description}}">
<meta name="author" content="{{ site.author }}"> <meta name="author" content="{{site.author}}">
<meta name="keywords" content="{{ site.keywords }}"> <meta name="keywords" content="{{site.keyword}}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl }}"> <link rel="canonical" href="{{page.url | replace:'index.html','' | prepend: site.baseurl}}">
{% assign fourofour = "/404.html"%} {% if page.url == "/404.html" | prepend: {{site.baseurl}} %}
{% if page.url == {{fourofour}} | prepend: {{site.baseurl}} %}
<meta http-equiv="refresh" content="20; url={{site.baseurl}}/"> <meta http-equiv="refresh" content="20; url={{site.baseurl}}/">
{% endif %} {% endif %}
<title>{{ site.title }} {% if page.title %} | {{ page.title }}{% endif %}</title> <title>{{site.title}} {% if page.title %} | {{page.title}}{% endif %}</title>
<!-- Bootstrap Core CSS --> <!-- Bootstrap Core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
@ -43,7 +42,7 @@
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]--> <![endif]-->
{% if site.favicon %} {% if site.favicon %}
<link rel="shortcut icon" type="image/x-icon" href="{{site.baseurl}}{{ site.favicon }}"> <link rel="shortcut icon" type="image/x-icon" href="{{site.baseurl}}{{site.favicon}}">
{% endif %} {% endif %}
</head> </head>

View file

@ -16,7 +16,7 @@
{{ post.content | truncatewords: site.post-preview-words | strip_html | markdownify }} {{ post.content | truncatewords: site.post-preview-words | strip_html | markdownify }}
<a href="{{site.baseurl}}/blog/index.html"><h4><strong>View more posts</strong></h4></a> <a href="{{site.baseurl}}/blog/"><h4><strong>View more posts</strong></h4></a>
</div> </div>
</div> </div>

View file

@ -26,19 +26,22 @@
<!-- Scroll to section for each page in index --> <!-- Scroll to section for each page in index -->
{% for p in site.pages_list %} {% for p in site.pages_list %}
<li> <li>
<a class="page-scroll" href="#{{ p[1] }}"> {{ p[0] }}</a> <a class="page-scroll" href="#{{ p[1] }}"> {{p[0]}} </a>
</li> </li>
{% endfor %} {% endfor %}
{% else %} {% else %}
<!-- Blog, Post, Tag pages--> <!-- Blog, Post, Tag and Error pages -->
{% for p in site.pages_list %} {% for p in site.pages_list %}
<li> <li>
{% comment %} If are blog, redirect to index.html of Blog {% endcomment %}
{% if p[1] == "latest-post" %} {% if p[1] == "latest-post" %}
<a class="page-scroll" href="{{site.baseurl}}/blog/index.html"> {{ p[0] }}</a> {% if page.url == "/blog/" | prepend: {{site.baseurl}} %}
<a class="page-scroll" href="#page"> {{p[0]}} </a>
{% else %}
<a href="{{site.baseurl}}/blog/"> {{p[0]}} </a>
{% endif %}
{% else %} {% else %}
<a class="page-scroll" href="{{site.baseurl}}/index.html#{{ p[1] }}"> {{ p[0] }}</a> <a href="{{site.baseurl}}/#{{ p[1] }}"> {{p[0]}} </a>
{% endif %} {% endif %}
</li> </li>
{% endfor %} {% endfor %}

View file

@ -6,7 +6,7 @@
<h4> <h4>
{% if paginator.previous_page %} {% if paginator.previous_page %}
<a href="{{site.baseurl}}{{ paginator.previous_page_path }}" class="previous">Newer Posts</a> <a href="{{site.baseurl}}{{paginator.previous_page_path}}" class="previous">Newer Posts</a>
{% endif %} {% endif %}
{% if paginator.previous_page and paginator.next_page %} {% if paginator.previous_page and paginator.next_page %}
@ -14,7 +14,7 @@
{% endif %} {% endif %}
{% if paginator.next_page %} {% if paginator.next_page %}
<a href="{{site.baseurl}}{{ paginator.next_page_path }}" class="next">Older Posts</a> <a href="{{site.baseurl}}{{paginator.next_page_path}}" class="next">Older Posts</a>
{% endif %} {% endif %}
</h4> </h4>

View file

@ -14,7 +14,7 @@
{% for p in site.pages_list %} {% for p in site.pages_list %}
{% for page in site.pages %} {% for page in site.pages %}
{% if p[1] == page.section-type%} {% if p[1] == page.section-type %}
{% include {{ page.path }} %} {% include {{ page.path }} %}
{% endif %} {% endif %}
{% endfor %} {% endfor %}

View file

@ -24,7 +24,7 @@
<div class="col-lg-10 col-lg-offset-2"> <div class="col-lg-10 col-lg-offset-2">
{% for post in site.posts %} {% for post in site.posts %}
{% if post.tags contains tag %} {% if post.tags contains tag %}
<h4 align="left"><strong>{{ post.date | date_to_string }}</strong> <small>. {{ post.category }} .</small> <a href="{{site.baseurl}}{{ post.url }}"> <strong>{{ post.title }} </a> </strong> <small><a href="{{site.baseurl}}{{post.url}}#disqus_thread">Comments</a></small></h4> <h4 align="left"><strong>{{ post.date | date_to_string }}</strong> <small>. {{ post.category }} .</small> <a href="{{site.baseurl}}{{post.url}}"> <strong>{{ post.title }} </a> </strong> <small><a href="{{site.baseurl}}{{post.url}}#disqus_thread">Comments</a></small></h4>
{% endif %} {% endif %}
{% endfor %} {% endfor %}
</div> </div>