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.
 
 

64 lines
2.0 KiB

const utils = require('../utils/utils.js');
var Promise = require('promise');
var markdown = require( "markdown" ).markdown;
const sql = require('../utils/sql');
module.exports=
{
/**
* renderPost() displays a single blog post in it's entirety
*
* @param res result sent to user
* @param post sql data about the blog post
* @return {*|Promise}
*/
renderPost: function(res, post)
{
return new Promise(function (resolve, reject)
{
res.write("<div class=\"w3-card-4 w3-margin w3-white\">");
//image
if(!(post.picture_url ==="n/a"))
{
res.write("<img src=\"/img/posts/" + post.picture_url + "\" alt=\"Nature\" style=\"width:100%\">");
}
res.write("<div class=\"w3-container\">");
//title
res.write("<h3><b>" + post.name + "</b></h3>");
//date
res.write("<h5><span class=\"w3-opacity\">" + post.published.toDateString() + "</span></h5>");
res.write("</div>");
res.write("<div class=\"w3-container\">");
try
{
sql.getCategory(post.category_id).then(function(category)
{
var pathName = "entries/" + category.url + "/" + post.url + ".md";
var html = markdown.toHTML(utils.getFileContents(pathName).toString());
html = html.split("<code>").join("<pre><code>");
html = html.split("</code>").join("</code></pre>");
html = html.split("\\`\\`\\`").join("```");
html = html.split("![](media/").join("![](" + "entries/" + category.url + "/media/");
res.write(html);
res.write("</div></div>");
resolve()
});
}
catch(ex)
{
//console.log(ex);
//utils.include(res, "includes/404.html");
}
});
}
};