Standardise on include format
This commit is contained in:
parent
c5e5ae90d5
commit
188a8d044f
7 changed files with 24 additions and 23 deletions
|
@ -1,7 +1,7 @@
|
|||
<footer class="container">
|
||||
<p class="copyright">© 2010-{{ 'now'|date('Y') }} {{ site.title }}. Powered by <a href="https://sculpin.io">Sculpin</a>.</p>
|
||||
|
||||
{% include('meetups') %}
|
||||
{% include 'meetups' %}
|
||||
</footer>
|
||||
|
||||
<script src="{{ site.url }}/assets/js/site.js"></script>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<head>
|
||||
{% include('title') %}
|
||||
{% include 'title' %}
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
@ -10,7 +10,7 @@
|
|||
{% endif %}
|
||||
|
||||
{% if page.meta.og %}
|
||||
{{ include('og', { og: page.meta.og }) }}
|
||||
{% include 'og' with { og: page.meta.og } %}
|
||||
{% endif %}
|
||||
|
||||
<link rel="stylesheet" href="{{ site.url }}/assets/css/site.css">
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
{% block sidebar_wrapper %}
|
||||
<div class="col-md-3">
|
||||
{% block sidebar %}
|
||||
{{ include('badges') }}
|
||||
{{ include('availability') }}
|
||||
{{ include('posts/latest') }}
|
||||
{% include 'badges' %}
|
||||
{% include 'availability' %}
|
||||
{% include 'posts/latest' %}
|
||||
{% endblock %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue