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

1
2
3
4
5
section.posts  img {
max-width: 100%;
height: auto;
width: auto\9;
}

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

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

###多说评论