Skip to content
Snippets Groups Projects
Verified Commit 5e90a88f authored by Diego Salazar's avatar Diego Salazar
Browse files

Added two new layouts for use by User Guides

- The goal being to allow for titles within the user guides while not over complicating the layouts and titles
parent f030835d
No related branches found
No related tags found
No related merge requests found
......@@ -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 %}
......
---
layout: base
---
<div class="site-wrap">
{{content}}
</div>
\ No newline at end of file
---
layout: base
---
<h1 class="text-center">{{page.title}}</h1>
<h1 class="text-center">{% t page.title %}</h1>
{{content}}
\ No newline at end of file
---
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">
......
---
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment