blog sequence
diff --git a/erpnext/website/page/blog/blog.js b/erpnext/website/page/blog/blog.js
index 3836f90..184424b 100644
--- a/erpnext/website/page/blog/blog.js
+++ b/erpnext/website/page/blog/blog.js
@@ -21,7 +21,8 @@
 		query: 'select tabBlog.name, title, left(content, 1000) as content, tabBlog.modified, \
 			ifnull(first_name, "") as first_name, ifnull(last_name, "") as last_name \
 			from tabProfile, tabBlog\
-		 	where ifnull(published,0)=1 and tabBlog.owner = tabProfile.name',
+		 	where ifnull(published,0)=1 and tabBlog.owner = tabProfile.name \
+			order by tabBlog.modified desc',
 		hide_refresh: true,
 		no_toolbar: true,
 		render_row: function(parent, data) {