diff options
Diffstat (limited to 'blog/_layouts/post.html')
-rw-r--r-- | blog/_layouts/post.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/blog/_layouts/post.html b/blog/_layouts/post.html index 555bdc6..8a3cccb 100644 --- a/blog/_layouts/post.html +++ b/blog/_layouts/post.html @@ -5,9 +5,11 @@ layout: default <article class="post"> {% include post-header.html post = page %} <section class="post-body"> - {% if page.page-image %} - {{ page.page-image | img: "magick:resize:590x" }} - {% endif %} + <div class="post-image"> + {% if page.page-image %} + {{ page.page-image | img: "magick:resize:590x" }} + {% endif %} + </div> {{ content }} </section> <footer> |