|
11 | 11 | {% for post in paginator.posts %} |
12 | 12 | <articleclass="hentry"> |
13 | 13 | <header> |
14 | | - {% if post.author-img %} |
15 | | -<imgsrc="/images/authors/{{post.author-img}}"alt="{{post.author}}"class="author-pic"> |
16 | | - {% endif %} |
| 14 | +<!--{% if post.author-img %} --> |
| 15 | +<imgsrc="/images/authors/{{post.author-img | default: 'csesoc.jpg'}}"alt="{{post.author}}"class="author-pic"> |
| 16 | +<!--{% endif %} --> |
17 | 17 | <h1class="entry-title"><ahref="{{ site.url }}{{ post.url }}"rel="bookmark"title="{{ post.title }}"itemprop="url">{{ post.title }}</a></h1> |
18 | 18 | <divclass="entry-meta"> |
19 | | -<spanclass="entry-date date published updated"><timedatetime="{{ post.date | date_to_xmlschema }}"><ahref="{{ site.url }}{{ post.url }}">{{ post.date | date: "%B %d, %Y" }}</a></time></span><spanclass="author vcard"><spanclass="fn">{{site.owner.name}}</span></span> |
| 19 | +<spanclass="entry-date date published updated"><timedatetime="{{ post.date | date_to_xmlschema }}"><ahref="{{ site.url }}{{ post.url }}">{{ post.date | date: "%B %d, %Y" }}</a></time></span><spanclass="author vcard"><spanclass="fn">{{post.author | default: "CSESoc UNSW"}}</span></span> |
20 | 20 | {% if site.reading_time %} |
21 | 21 | <spanclass="entry-reading-time"> |
22 | 22 | <iclass="fa fa-clock-o"></i> |
|