wip: Upgrade to jekyll 4
This commit is contained in:
@@ -12,8 +12,8 @@
|
||||
{% if page.name != 'about.html' %}
|
||||
<div class="well well-sm small">
|
||||
<div class="pull-left" id="about-well-image">
|
||||
<a href="{{ site_url }}/about/">
|
||||
<img src="{{'/images/profile.svg' | prepend: site.baseurl}}" alt="">
|
||||
<a href="{% link about.html %}">
|
||||
<img src="{% link images/profile.svg %}" alt="">
|
||||
</a>
|
||||
</div>
|
||||
{% include about.html %}
|
||||
@@ -99,7 +99,7 @@
|
||||
|
||||
break;
|
||||
case 'about':
|
||||
location = '{{ site_url }}/about/';
|
||||
location = '{% link about.html %}';
|
||||
|
||||
break;
|
||||
default:
|
||||
|
@@ -7,10 +7,10 @@ render_post: true
|
||||
<nav>
|
||||
<ul class="pager">
|
||||
{% if page.previous %}
|
||||
<li class="previous"><a href="{{page.previous.url | prepend: site.baseurl}}">← {{page.previous.title}}</a></li>
|
||||
<li class="previous"><a href="{{ page.previous.url }}">← {{page.previous.title}}</a></li>
|
||||
{% endif %}
|
||||
{% if page.next %}
|
||||
<li class="next"><a href="{{page.next.url | prepend: site.baseurl}}">{{page.next.title}} →</a></li>
|
||||
<li class="next"><a href="{{ page.next.url }}">{{page.next.title}} →</a></li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
</nav>
|
||||
|
Reference in New Issue
Block a user