Include absolute URL shorthand

This commit is contained in:
Michael Rose 2016-02-22 21:22:07 -05:00
parent 1b4d507e21
commit a572dbaae0
7 changed files with 43 additions and 36 deletions

View file

@ -0,0 +1 @@
{% capture absurl %}{{ site.url }}{{ site.baseurl }}{% endcapture %}

View file

@ -7,7 +7,7 @@
{% if author.avatar contains 'http' %}
<img src="{{ author.avatar }}" class="bio-photo" alt="{{ author.name }} bio photo">
{% else %}
<img src="{{ author.avatar | prepend: "/images/" | prepend: absurl }}" class="bio-photo" alt="{{ author.name }} bio photo">
<img src="{{ author.avatar | prepend: absurl }}" class="bio-photo" alt="{{ author.name }} bio photo">
{% endif %}
<h3 itemprop="name">{{ author.name }}</h3>

View file

@ -1,47 +1,45 @@
{% capture absurl %}{{ site.url }}{{ site.baseurl }}{% endcapture %}
{% include absolute-url.liquid %}
<!DOCTYPE html>
<html lang="{{ site.locale | slice: 0,2 }}">
<head>
{% include head.html %}
</head>
<head>
{% include head.html %}
</head>
<body class="{{ layout.class }}">
<body class="{{ layout.class }}">
{% include browser-upgrade.html %}
{% include navigation.html %}
{% include browser-upgrade.html %}
{% include navigation.html %}
{% if page.image.feature %}
<div class="image-wrap">
<img src=
{% if page.image.feature contains 'http' %}
"{{ page.image.feature }}"
{% else %}
"{{ page.image.feature | prepend: "/images/" | prepend: absurl }}"
{% if page.image.feature %}
<div class="image-wrap">
<img src=
{% if page.image.feature contains 'http' %}
"{{ page.image.feature }}"
{% else %}
"{{ page.image.feature | prepend: "/images/" | prepend: absurl }}"
{% endif %}
alt="{{ page.title }}">
{% if page.image.credit %}
<span class="image-credit">Photo Credit: <a href="{{ page.image.creditlink }}">{{ page.image.credit }}</a></span>
{% endif %}
alt="{{ page.title }} feature image">
{% if page.image.credit %}
<span class="image-credit">Photo Credit: <a href="{{ page.image.creditlink }}">{{ page.image.credit }}</a></span>
</div><!-- /.image-wrap -->
{% endif %}
</div><!-- /.image-wrap -->
{% endif %}
<div id="main" role="main">
<div class="article-author-side">
{% include author-bio.html %}
</div>
{{ content }}
</div><!-- /#main -->
<div id="main" role="main">
<div class="article-author-side">
{% include author-bio.html %}
</div>
{{ content }}
</div><!-- /#main -->
<div class="footer-wrap">
<footer>
{% include footer.html %}
</footer>
</div><!-- /.footer-wrap -->
<div class="footer-wrap">
<footer>
{% include footer.html %}
</footer>
</div><!-- /.footer-wrap -->
{% include scripts.html %}
{% include scripts.html %}
</body>
</body>
</html>

View file

@ -2,6 +2,8 @@
layout: default
---
{% include absolute-url.liquid %}
<div id="index">
<h3><a href="{{ absurl }}/posts/">Recent Posts</a></h3>
{% for post in site.posts limit:5 %}

View file

@ -2,6 +2,8 @@
layout: default
---
{% include absolute-url.liquid %}
<article class="page">
<h1>{{ page.title }}</h1>
<div class="article-wrap">

View file

@ -2,6 +2,8 @@
layout: default
---
{% include absolute-url.liquid %}
<div id="index">
<h1>{{ page.title }}</h1>
{% capture written_year %}'None'{% endcapture %}
@ -16,7 +18,7 @@ layout: default
<h2 class="link-post"><a href="{{ absurl }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a> <a href="{{ post.link }}" target="_blank" title="{{ post.title }}"><i class="fa fa-link"></i></a></h2>
{% else %}
<h2><a href="{{ absurl }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2>
<p>{{ post.excerpt | strip_html | truncate: 160 }}</p>
<p>{{ post.excerpt | remove: '\[ ... \]' | remove: '\( ... \)' | markdownify | strip_html | strip_newlines | escape_once }}</p>
{% endif %}
</article>
{% endfor %}

View file

@ -2,6 +2,8 @@
layout: default
---
{% include absolute-url.liquid %}
<article class="post">
<div class="headline-wrap">
{% if page.link %}