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' %} {% if author.avatar contains 'http' %}
<img src="{{ author.avatar }}" class="bio-photo" alt="{{ author.name }} bio photo"> <img src="{{ author.avatar }}" class="bio-photo" alt="{{ author.name }} bio photo">
{% else %} {% 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 %} {% endif %}
<h3 itemprop="name">{{ author.name }}</h3> <h3 itemprop="name">{{ author.name }}</h3>

View file

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

View file

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

View file

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

View file

@ -2,6 +2,8 @@
layout: default layout: default
--- ---
{% include absolute-url.liquid %}
<div id="index"> <div id="index">
<h1>{{ page.title }}</h1> <h1>{{ page.title }}</h1>
{% capture written_year %}'None'{% endcapture %} {% 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> <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 %} {% else %}
<h2><a href="{{ absurl }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h2> <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 %} {% endif %}
</article> </article>
{% endfor %} {% endfor %}

View file

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