Merge pull request #31 from maxheld83/hotlinked-images
Hotlinked images
This commit is contained in:
commit
fd0d497654
@ -1,4 +1,10 @@
|
|||||||
<img src="{{ site.url }}/images/{{ site.owner.avatar }}" class="bio-photo" alt="{{ site.owner.name }} bio photo"></a>
|
{% if site.owner.avatar contains 'http://' %}
|
||||||
|
<img src="{{ site.owner.avatar }}" class="bio-photo" alt="{{ site.owner.name }} bio photo"></a>
|
||||||
|
{% elsif site.owner.avatar contains 'https://' %}
|
||||||
|
<img src="{{ site.owner.avatar }}" class="bio-photo" alt="{{ site.owner.name }} bio photo"></a>
|
||||||
|
{% else %}
|
||||||
|
<img src="{{ site.url }}/images/{{ site.owner.avatar }}" class="bio-photo" alt="{{ site.owner.name }} bio photo"></a>
|
||||||
|
{% endif %}
|
||||||
<h3>{{ site.owner.name }}</h3>
|
<h3>{{ site.owner.name }}</h3>
|
||||||
<p>{{ site.owner.bio }}</p>
|
<p>{{ site.owner.bio }}</p>
|
||||||
{% if site.owner.twitter %}<a href="http://twitter.com/{{ site.owner.twitter }}" class="author-social" target="_blank"><i class="icon-twitter"></i> Twitter</a>{% endif %}
|
{% if site.owner.twitter %}<a href="http://twitter.com/{{ site.owner.twitter }}" class="author-social" target="_blank"><i class="icon-twitter"></i> Twitter</a>{% endif %}
|
||||||
|
@ -3,13 +3,43 @@
|
|||||||
<meta name="description" content="{{ page.description }}">
|
<meta name="description" content="{{ page.description }}">
|
||||||
<meta name="keywords" content="{{ page.tags | join: ', ' }}">
|
<meta name="keywords" content="{{ page.tags | join: ', ' }}">
|
||||||
{% if site.owner.twitter %}<!-- Twitter Cards -->
|
{% if site.owner.twitter %}<!-- Twitter Cards -->
|
||||||
{% if page.image.feature %}<meta name="twitter:card" content="summary_large_image">
|
{% if page.image.feature %}
|
||||||
<meta name="twitter:image" content="{{ site.url }}/images/{{ page.image.feature }}">
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
{% else %}<meta name="twitter:card" content="summary">
|
<meta name="twitter:image" content=
|
||||||
<meta name="twitter:image" content="{% if page.image.thumb %}{{ site.url }}/images/{{ page.image.thumb }}{% else %}{{ site.url }}/images/{{ site.logo }}{% endif %}">{% endif %}
|
{% if page.image.feature contains 'http://' %}
|
||||||
<meta name="twitter:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
|
"{{ page.image.feature }}"
|
||||||
<meta name="twitter:description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
|
{% elsif page.image.feature contains 'https://' %}
|
||||||
<meta name="twitter:creator" content="@{{ site.owner.twitter }}">{% endif %}
|
"{{ page.image.feature }}"
|
||||||
|
{% else %}
|
||||||
|
"{{ site.url }}/images/{{ page.image.feature }}"
|
||||||
|
{% endif %}
|
||||||
|
>
|
||||||
|
{% else %}
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:image" content=
|
||||||
|
{% if page.image.thumb %}
|
||||||
|
{% if page.image.thumb contains 'http://' %}
|
||||||
|
"{{ page.image.thumb }}"
|
||||||
|
{% elsif page.image.thumb contains 'https://' %}
|
||||||
|
"{{ page.image.thumb }}"
|
||||||
|
{% else %}
|
||||||
|
"{{ site.url }}/images/{{ page.image.thumb }}"
|
||||||
|
{% endif %}
|
||||||
|
{% else %}
|
||||||
|
{% if site.logo contains 'http://' %}
|
||||||
|
"{{ site.logo }}"
|
||||||
|
{% elsif site.logo contains 'https://' %}
|
||||||
|
"{{ site.logo }}"
|
||||||
|
{% else %}
|
||||||
|
"{{ site.url }}/images/{{ site.logo }}"
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
>
|
||||||
|
{% endif %}
|
||||||
|
<meta name="twitter:title" content="{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}">
|
||||||
|
<meta name="twitter:description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
|
||||||
|
<meta name="twitter:creator" content="@{{ site.owner.twitter }}">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<!-- Open Graph -->
|
<!-- Open Graph -->
|
||||||
<meta property="og:locale" content="en_US">
|
<meta property="og:locale" content="en_US">
|
||||||
|
@ -13,10 +13,22 @@
|
|||||||
|
|
||||||
{% include _navigation.html %}
|
{% include _navigation.html %}
|
||||||
|
|
||||||
{% if page.image.feature %}<div class="image-wrap">
|
{% if page.image.feature %}
|
||||||
<img src="{{ site.url }}/images/{{ page.image.feature }}" alt="{{ page.title }} feature image">
|
<div class="image-wrap">
|
||||||
{% if page.image.credit %}<span class="image-credit">Photo Credit: <a href="{{ page.image.creditlink }}">{{ page.image.credit }}</a></span>{% endif %}
|
<img src=
|
||||||
</div><!-- /.image-wrap -->{% endif %}
|
{% if page.image.feature contains 'http://' %}
|
||||||
|
"{{ page.image.feature }}"
|
||||||
|
{% elsif page.image.feature contains 'https://' %}
|
||||||
|
"{{ page.image.feature }}"
|
||||||
|
{% else %}
|
||||||
|
"{{ site.url }}/images/{{ page.image.feature }}"
|
||||||
|
{% 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>
|
||||||
|
{% endif %}
|
||||||
|
</div><!-- /.image-wrap -->
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<div class="article-author-side">
|
<div class="article-author-side">
|
||||||
{% include _author-bio.html %}
|
{% include _author-bio.html %}
|
||||||
|
@ -13,10 +13,22 @@
|
|||||||
|
|
||||||
{% include _navigation.html %}
|
{% include _navigation.html %}
|
||||||
|
|
||||||
{% if page.image.feature %}<div class="image-wrap">
|
{% if page.image.feature %}
|
||||||
<img src="{{ site.url }}/images/{{ page.image.feature }}" alt="{{ page.title }} feature image">
|
<div class="image-wrap">
|
||||||
{% if page.image.credit %}<span class="image-credit">Photo Credit: <a href="{{ page.image.creditlink }}">{{ page.image.credit }}</a></span>{% endif %}
|
<img src=
|
||||||
</div><!-- /.image-wrap -->{% endif %}
|
{% if page.image.feature contains 'http://' %}
|
||||||
|
"{{ page.image.feature }}"
|
||||||
|
{% elsif page.image.feature contains 'https://' %}
|
||||||
|
"{{ page.image.feature }}"
|
||||||
|
{% else %}
|
||||||
|
"{{ site.url }}/images/{{ page.image.feature }}"
|
||||||
|
{% 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>
|
||||||
|
{% endif %}
|
||||||
|
</div><!-- /.image-wrap -->
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<div id="main" role="main">
|
<div id="main" role="main">
|
||||||
<div class="article-author-side">
|
<div class="article-author-side">
|
||||||
|
@ -13,10 +13,22 @@
|
|||||||
|
|
||||||
{% include _navigation.html %}
|
{% include _navigation.html %}
|
||||||
|
|
||||||
{% if page.image.feature %}<div class="image-wrap">
|
{% if page.image.feature %}
|
||||||
<img src="{{ site.url }}/images/{{ page.image.feature }}" alt="{{ page.title }} feature image" itemprop="primaryImageOfPage">
|
<div class="image-wrap">
|
||||||
{% if page.image.credit %}<span class="image-credit">Photo Credit: <a href="{{ page.image.creditlink }}">{{ page.image.credit }}</a></span>{% endif %}
|
<img src=
|
||||||
</div><!-- /.image-wrap -->{% endif %}
|
{% if page.image.feature contains 'http://' %}
|
||||||
|
"{{ page.image.feature }}"
|
||||||
|
{% elsif page.image.feature contains 'https://' %}
|
||||||
|
"{{ page.image.feature }}"
|
||||||
|
{% else %}
|
||||||
|
"{{ site.url }}/images/{{ page.image.feature }}"
|
||||||
|
{% 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>
|
||||||
|
{% endif %}
|
||||||
|
</div><!-- /.image-wrap -->
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<div class="article-author-side">
|
<div class="article-author-side">
|
||||||
{% include _author-bio.html %}
|
{% include _author-bio.html %}
|
||||||
|
@ -13,10 +13,22 @@
|
|||||||
|
|
||||||
{% include _navigation.html %}
|
{% include _navigation.html %}
|
||||||
|
|
||||||
{% if page.image.feature %}<div class="image-wrap">
|
{% if page.image.feature %}
|
||||||
<img src="{{ site.url }}/images/{{ page.image.feature }}" alt="{{ page.title }} feature image">
|
<div class="image-wrap">
|
||||||
{% if page.image.credit %}<span class="image-credit">Photo Credit: <a href="{{ page.image.creditlink }}">{{ page.image.credit }}</a></span>{% endif %}
|
<img src=
|
||||||
</div><!-- /.image-wrap -->{% endif %}
|
{% if page.image.feature contains 'http://' %}
|
||||||
|
"{{ page.image.feature }}"
|
||||||
|
{% elsif page.image.feature contains 'https://' %}
|
||||||
|
"{{ page.image.feature }}"
|
||||||
|
{% else %}
|
||||||
|
"{{ site.url }}/images/{{ page.image.feature }}"
|
||||||
|
{% 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>
|
||||||
|
{% endif %}
|
||||||
|
</div><!-- /.image-wrap -->
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<div id="main" role="main">
|
<div id="main" role="main">
|
||||||
<div class="article-author-side">
|
<div class="article-author-side">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user