mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
Merge pull request #72 from icyflame/master
Display the default image in case the avatar not available
This commit is contained in:
commit
90f341d5ea
1 changed files with 8 additions and 0 deletions
|
@ -25,10 +25,18 @@
|
||||||
</header>
|
</header>
|
||||||
<footer class="entry-meta">
|
<footer class="entry-meta">
|
||||||
{% if page.author.name %}
|
{% if page.author.name %}
|
||||||
|
{% if page.author.avatar %}
|
||||||
<img src="{{ site.url }}/images/{{ page.author.avatar }}" alt="{{ page.author.name }} photo" class="author-photo">
|
<img src="{{ site.url }}/images/{{ page.author.avatar }}" alt="{{ page.author.name }} photo" class="author-photo">
|
||||||
|
{% else %}
|
||||||
|
<img src="{{ site.url }}/images/bio-photo-alt.jpg" alt="{{ page.author.name }} photo" class="author-photo">
|
||||||
|
{% endif %}
|
||||||
<span class="author vcard">By <span class="fn">{{ page.author.name }}</span></span>
|
<span class="author vcard">By <span class="fn">{{ page.author.name }}</span></span>
|
||||||
{% else %}
|
{% else %}
|
||||||
|
{% if site.owner.avatar %}
|
||||||
<img src="{{ site.url }}/images/{{ site.owner.avatar }}" alt="{{ site.owner.name }} photo" class="author-photo">
|
<img src="{{ site.url }}/images/{{ site.owner.avatar }}" alt="{{ site.owner.name }} photo" class="author-photo">
|
||||||
|
{% else %}
|
||||||
|
<img src="{{ site.url }}/images/bio-photo-alt.jpg" alt="{{ site.owner.name }} photo" class="author-photo">
|
||||||
|
{% endif %}
|
||||||
<span class="author vcard">By <span class="fn"><a href="{{ site.url }}/about/" title="About {{ site.owner.name }}">{{ site.owner.name }}</a></span></span>
|
<span class="author vcard">By <span class="fn"><a href="{{ site.url }}/about/" title="About {{ site.owner.name }}">{{ site.owner.name }}</a></span></span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<span class="entry-date date published"><time datetime="{{ page.date | date_to_xmlschema }}"><i class="icon-calendar-empty"></i> {{ page.date | date: "%B %d, %Y" }}</time></span>
|
<span class="entry-date date published"><time datetime="{{ page.date | date_to_xmlschema }}"><i class="icon-calendar-empty"></i> {{ page.date | date: "%B %d, %Y" }}</time></span>
|
||||||
|
|
Loading…
Reference in a new issue