diff --git a/core/client/templates/posts/index.hbs b/core/client/templates/posts/index.hbs index c0c7076e21..cd2597b1f5 100644 --- a/core/client/templates/posts/index.hbs +++ b/core/client/templates/posts/index.hbs @@ -1,8 +1,6 @@ {{#if noPosts}} -
-
-

You Haven't Written Any Posts Yet!

- {{#link-to "editor.new"}}{{/link-to}} -
+
+

You Haven't Written Any Posts Yet!

+ {{#link-to "editor.new"}}{{/link-to}}
-{{/if}} \ No newline at end of file +{{/if}} diff --git a/core/client/views/posts/index.js b/core/client/views/posts/index.js index 1b0199786f..9f8dd9e36a 100644 --- a/core/client/views/posts/index.js +++ b/core/client/views/posts/index.js @@ -1,5 +1,7 @@ import MobileIndexView from 'ghost/views/mobile/index-view'; -var PostsIndexView = MobileIndexView.extend(); +var PostsIndexView = MobileIndexView.extend({ + classNames: ['no-posts-box'] +}); export default PostsIndexView;