const Promise = require('promise');
const sql = require('../utils/sql');
module.exports=
{
/** Renders the the recent post sidebar.
*
* @param res
* @returns {*|Promise}
*/
main: function(res)
{
return new Promise(function(resolve, reject)
{
res.write("
");
// res.write("
" +
// "
Recent Posts
");
res.write("
");
res.write("
\n" +
" Recent Posts
\n" +
" ");
sql.getRecentPosts().then(function(posts)
{
posts.forEach(function(p)
{
var url = '/' + p.category + '/' + p.url;
res.write("
" + p.name + "
");
});
res.write("
");
resolve();
})
});
}
};