_includes/paginatefeed.html in jekyll-theme-buttery-biscuit-0.3.1 vs _includes/paginatefeed.html in jekyll-theme-buttery-biscuit-0.3.2

- old
+ new

@@ -4,11 +4,14 @@ <!-- Post heading --> <div class="row"> <div class="col"> <h1 style="margin-bottom: 0;"><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1> <p> - Published {{ post.date | date: "%Y-%m-%d" }} + {% if post.author %} + By {{ post.author }} &emsp; + {% endif %} + Published {{ post.date | date: "%Y-%m-%d" }} &emsp; {% for tag in post.tags %} <span class="tag">{{ tag }}</span> {% endfor %} </p> </div> @@ -16,10 +19,14 @@ <!-- Post content --> <div class="row"> {% if post.img %} <div class="col-4"> - {% picture feed "{{ post.img }}" %} + {% if post.cropkeep %} + {% picture "{{ post.img }}" 3:2 {{ post.cropkeep }} %} + {% else %} + {% picture "{{ post.img }}" %} + {% endif %} </div> {% endif %} <div class="col"> {{ post.excerpt }} \ No newline at end of file