Rename directories
This commit is contained in:
parent
13ea82323b
commit
e971dbda24
31 changed files with 0 additions and 0 deletions
7
source/_includes/post/about-author.html.twig
Normal file
7
source/_includes/post/about-author.html.twig
Normal file
|
@ -0,0 +1,7 @@
|
|||
<div class="about-author">
|
||||
<h2>About the Author</h2>
|
||||
|
||||
<img src="{{ site.images_url }}{{ site.avatar.url }}" alt="Picture of Oliver" class="img-circle">
|
||||
|
||||
<p>Oliver Davies is a Web Developer, System Administrator and Drupal specialist based in the UK. He is a {{ site.work.role }} at <a href="{{ site.companies[site.work.company].url }}">{{ site.companies[site.work.company].name }}</a> and also provides freelance consultancy services for Drupal websites, PHP applications and Linux servers.</p>
|
||||
</div>
|
3
source/_includes/post/feedback.html.twig
Normal file
3
source/_includes/post/feedback.html.twig
Normal file
|
@ -0,0 +1,3 @@
|
|||
<p class="post-feedback" style="font-style: italic">
|
||||
<b>Have feedback on this post?</b> <a href="mailto:{{ site.email }}?subject=Feedback: {{ page.title }}">Email me</a> or <a href="https://twitter.com/intent/tweet?text=@{{ site.twitter.name }}&url={{ site.url }}{{ page.url|url_encode }}">send me a tweet</a>.
|
||||
</p>
|
4
source/_includes/post/header.html.twig
Normal file
4
source/_includes/post/header.html.twig
Normal file
|
@ -0,0 +1,4 @@
|
|||
{% set title_tag = title_tag|default('h1') %}
|
||||
<{{ title_tag }}>{{ page.title }}</{{ title_tag }}>
|
||||
|
||||
<p class="posted">{{ page.date|date('jS F Y') }}</p>
|
17
source/_includes/post/pager.html.twig
Normal file
17
source/_includes/post/pager.html.twig
Normal file
|
@ -0,0 +1,17 @@
|
|||
<div class="post-pager is-flex">
|
||||
{% if page.previous_post %}
|
||||
<div class="is-half">
|
||||
<a href="{{ page.previous_post.url }}">
|
||||
« {{ page.previous_post.title }}
|
||||
</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if page.next_post %}
|
||||
<div class="is-half text-right">
|
||||
<a href="{{ page.next_post.url }}">
|
||||
{{ page.next_post.title }} »
|
||||
</a>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
11
source/_includes/post/related.html.twig
Normal file
11
source/_includes/post/related.html.twig
Normal file
|
@ -0,0 +1,11 @@
|
|||
{% if page.related -%}
|
||||
<h2>Related Posts</h2>
|
||||
|
||||
<ul>
|
||||
{% for relate in page.related -%}
|
||||
<li>
|
||||
<a href="{{ relate.source.url }}">{{ relate.title }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{%- endif %}
|
8
source/_includes/post/tags.html.twig
Normal file
8
source/_includes/post/tags.html.twig
Normal file
|
@ -0,0 +1,8 @@
|
|||
{% if page.tags %}
|
||||
<p class="tags">
|
||||
Tags:
|
||||
{% for tag in page.tags %}
|
||||
<a href="{{ site.url }}/blog/tags/{{ tag|url_encode(true) }}">{{ tag }}</a>{% if not loop.last %}, {% endif %}
|
||||
{% endfor %}
|
||||
</p>
|
||||
{% endif %}
|
Loading…
Add table
Add a link
Reference in a new issue