diff --git a/_layouts/blog_by_tag.html b/_layouts/blog_by_tag.html index 1b357a776dd9d3888bf9fe62845a1b0122666b85..0fae8397eee3a2086956e695ce8b0d6992099096 100644 --- a/_layouts/blog_by_tag.html +++ b/_layouts/blog_by_tag.html @@ -23,7 +23,7 @@ layout: custom <div> {% if site.tags[tag.slug] %} {% for post in site.tags[tag.slug] %} - <h3><a href="{{ post.url }}">{{ post.title }}</a></h3> + <h3><a href="{{site.baseurl}}/{{ post.url }}">{{ post.title }}</a></h3> <p> {{ post.summary }} </p> @@ -46,7 +46,7 @@ layout: custom {% for post in site.posts limit:4 %} <div class="row start-xs info-block-row"> <div class="col"> - <p><a href="{{ post.url }}">{{ post.title }}</a></p> + <p><a href="{{site.baseurl}}/{{ post.url }}">{{ post.title }}</a></p> </div> </div> {% endfor %} @@ -60,7 +60,7 @@ layout: custom {% for tag in site.data.tags limit:4 %} <div class="row start-xs"> <div class="col"> - <p><a href="/blog/tags/{{ tag.slug }}.html">{{ tag.name }}</a></p> + <p><a href="{{site.baseurl}}/blog/tags/{{ tag.slug }}.html">{{ tag.name }}</a></p> </div> </div> {% endfor %} diff --git a/_layouts/customnt.html b/_layouts/customnt.html new file mode 100644 index 0000000000000000000000000000000000000000..8ed8b39e8c905154ec759b1b3c405993bbc62b1c --- /dev/null +++ b/_layouts/customnt.html @@ -0,0 +1,7 @@ +--- +layout: base +--- + +<div class="site-wrap"> + {{content}} +</div> \ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html index 94ba7876ebc23fd607723364b819fcad35f72f4e..687f0d8af35b5299e6fcd9ff293a7a58fb43d76f 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,5 +1,5 @@ --- layout: base --- -<h1 class="text-center">{{page.title}}</h1> +<h1 class="text-center">{% t page.title %}</h1> {{content}} \ No newline at end of file diff --git a/_layouts/static_page.html b/_layouts/static_page.html index e224d0197f0661370119d1f28d6f3e69997df875..95eb68b0cf977e2a0597178e8ac680c7246e37e9 100644 --- a/_layouts/static_page.html +++ b/_layouts/static_page.html @@ -1,7 +1,7 @@ --- layout: base --- -<h1 class="text-center">{{page.title}}</h1> +<h1 class="text-center">{% t page.title %}</h1> <div class="site-wrap"> <!-- FULL WIDTH BLOCK --> <section class="container full"> diff --git a/_layouts/user-guide.html b/_layouts/user-guide.html new file mode 100644 index 0000000000000000000000000000000000000000..2cde2d7eb8dde7ef0cc041190f0037c84b8b9050 --- /dev/null +++ b/_layouts/user-guide.html @@ -0,0 +1,14 @@ +--- +layout: base +--- + <div class="site-wrap"> + <!-- FULL WIDTH BLOCK --> + <section class="container full"> + <div class="info-block text-adapt"> + <div> + {{content}} + </div> + </div> + </section> + <!-- END FULL WIDTH BLOCK --> + </div> \ No newline at end of file