###图片自适应(包括手机上)
文件名assets/css/app.css

section.posts  img {
    max-width: 100%;
    height: auto;
    width: auto\9;
}

###文章里的链接新页面打开
文件名`assets/js/ghost-blog.js

// 放19行后面
$('section.posts a[href^="http"]').each(function(){
      $(this).attr('target', '_blank');
});

###多说评论