Re-added some blocks
This commit is contained in:
parent
7b0f15bfe8
commit
9f537eb676
|
@ -8,6 +8,7 @@ pagination:
|
||||||
use:
|
use:
|
||||||
- posts
|
- posts
|
||||||
---
|
---
|
||||||
|
{% block content %}
|
||||||
<h1>Blog</h1>
|
<h1>Blog</h1>
|
||||||
|
|
||||||
<ul class="posts">
|
<ul class="posts">
|
||||||
|
@ -36,3 +37,6 @@ use:
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</nav>
|
</nav>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block body_classes 'page--blog page--blog__list' %}
|
||||||
|
|
|
@ -79,6 +79,7 @@ testimonials:
|
||||||
<p>Everything we have thrown at Oliver, he has approached with an open and flexible mind that has allowed him
|
<p>Everything we have thrown at Oliver, he has approached with an open and flexible mind that has allowed him
|
||||||
to work on a wide range of projects and features for Drupal products.</p>
|
to work on a wide range of projects and features for Drupal products.</p>
|
||||||
---
|
---
|
||||||
|
{% block content %}
|
||||||
<h1>Testimonials</h1>
|
<h1>Testimonials</h1>
|
||||||
<p>Here are some examples of the nice things that clients and former colleagues have said.</p>
|
<p>Here are some examples of the nice things that clients and former colleagues have said.</p>
|
||||||
<p>You can view more recommendations on my <a href="{{ site.linkedin.url }}">LinkedIn profile</a>.</p>
|
<p>You can view more recommendations on my <a href="{{ site.linkedin.url }}">LinkedIn profile</a>.</p>
|
||||||
|
@ -103,3 +104,6 @@ testimonials:
|
||||||
{{ testimonial.text|raw }}
|
{{ testimonial.text|raw }}
|
||||||
</article>
|
</article>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block body_classes 'page--testimonials' %}
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
<link rel="icon" href="{{ site.gravatar.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
|
<link rel="icon" href="{{ site.gravatar.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body{% if page.blocks.body_classes %} class="{{ page.blocks.body_classes }}"{% endif %}>
|
||||||
<nav class="navbar navbar-inverse navbar-fixed-top">
|
<nav class="navbar navbar-inverse navbar-fixed-top">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="navbar-header">
|
<div class="navbar-header">
|
||||||
|
|
Loading…
Reference in a new issue