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.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
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
+
8
13
## [ 1.1.2] - 2017-09-14
9
14
10
15
### Fixed
Original file line number Diff line number Diff line change 12
12
</ div >
13
13
< aside class ="entry-sidebar ">
14
14
{% 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 %}
16
18
</ aside >
17
19
</ div >
18
20
Original file line number Diff line number Diff line change 12
12
</ div >
13
13
< aside class ="entry-sidebar ">
14
14
{% 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 %}
16
18
</ aside >
17
19
</ div >
18
20
You can’t perform that action at this time.
0 commit comments