File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
77
8+ ## [ Unreleased] -
9+
10+ ### Fixed
11+ - Fixed ` {nil, "picture"=>nil"} ` in ` _layouts/about.html ` when author image isn't set. [ #34 ] ( https://github.com/mmistakes/jekyll-theme-basically-basic/issues/34 )
12+
813## [ 1.1.2] - 2017-09-14
914
1015### Fixed
Original file line number Diff line number Diff line change 1212 </ div >
1313 < aside class ="entry-sidebar ">
1414 {% include author %}
15- < img class ="author-picture " src ="{{ author_picture }} " alt ="{{ author_name }} ">
15+ {% if author_picture %}
16+ < img class ="author-picture " src ="{{ author_picture }} " alt ="{{ author_name }} ">
17+ {% endif %}
1618 </ aside >
1719 </ div >
1820
Original file line number Diff line number Diff line change 1212 </ div >
1313 < aside class ="entry-sidebar ">
1414 {% include author %}
15- < img class ="author-picture " src ="{{ author_picture }} " alt ="{{ author_name }} ">
15+ {% if author_picture %}
16+ < img class ="author-picture " src ="{{ author_picture }} " alt ="{{ author_name }} ">
17+ {% endif %}
1618 </ aside >
1719 </ div >
1820
You can’t perform that action at this time.
0 commit comments