Personal blog written from scratch using Node.js, Bootstrap, and MySQL. https://jrtechs.net
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

38 lines
1.2 KiB

const Promise = require('promise');
const sql = require('../utils/sql');
module.exports=
{
/** Renders the the recent post sidebar.
*
* @returns {*|Promise}
*/
main: function()
{
return new Promise(function(resolve, reject)
{
var content = "<div class=\"container\">";
content +="<div class=\"list-group\">";
content +=" <a href=\"#\" class=\"list-group-item list-group-item-action flex-column align-items-start active\">\n" +
" <h5 class=\"mb-1\">Recent Posts</h5>\n" +
" </a>";
sql.getRecentPosts().then(function(posts)
{
posts.forEach(function(p)
{
var url = '/' + p.category + '/' + p.url;
content += "<a class=\"list-group-item\" href='"
+ url + "'>" + p.name + "<br></a>";
});
content +="</div></div>";
resolve(content);
}).catch(function(error)
{
reject(error);
})
});
}
};