mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-12-24 09:58:51 +00:00
Display latest posts.
This commit is contained in:
parent
85291fafba
commit
65d75243ec
@ -12,4 +12,13 @@
|
|||||||
max-width: 500px;
|
max-width: 500px;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.latest-posts-row {
|
||||||
|
padding-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.latest-posts-row .col-md-6 {
|
||||||
|
margin: auto;
|
||||||
|
float: none;
|
||||||
}
|
}
|
@ -29,8 +29,54 @@ ComunicWeb.pages.latestPosts.main = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Display the list of posts
|
//Display the list of posts
|
||||||
|
ComunicWeb.pages.latestPosts.main._display_list(response, target);
|
||||||
});
|
});
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Display the list of latest post
|
||||||
|
*
|
||||||
|
* @param {Object} list The list of posts to display
|
||||||
|
* @param {HTMLElement} target The target for the posts
|
||||||
|
*/
|
||||||
|
_display_list: function(list, target){
|
||||||
|
|
||||||
|
//Create post list box
|
||||||
|
//Create row
|
||||||
|
var pageRow = createElem2({
|
||||||
|
appendTo: target,
|
||||||
|
type: "div",
|
||||||
|
class: "row latest-posts-row"
|
||||||
|
});
|
||||||
|
|
||||||
|
//Post column
|
||||||
|
var column = createElem2({
|
||||||
|
appendTo: pageRow,
|
||||||
|
type: "div",
|
||||||
|
class: "col-md-6"
|
||||||
|
});
|
||||||
|
|
||||||
|
//Create post box
|
||||||
|
var postBox = createElem2({
|
||||||
|
appendTo: column,
|
||||||
|
type: "div",
|
||||||
|
class: "box box-primary"
|
||||||
|
});
|
||||||
|
|
||||||
|
//Create box body
|
||||||
|
var boxBody = createElem2({
|
||||||
|
appendTo: postBox,
|
||||||
|
type: "div",
|
||||||
|
class: "box-body"
|
||||||
|
});
|
||||||
|
|
||||||
|
//Process the list of posts
|
||||||
|
for (let index = 0; index < list.length; index++) {
|
||||||
|
|
||||||
|
//Display the post
|
||||||
|
ComunicWeb.components.posts.ui.display_post(list[index], boxBody);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user