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.

29 lines
926 B

  1. const Promise = require('promise');
  2. const sql = require('../utils/sql');
  3. module.exports=
  4. {
  5. main: function(res)
  6. {
  7. return new Promise(function(resolve, reject)
  8. {
  9. res.write("<div class=\"w3-card w3-margin\">");
  10. res.write("<div class=\"w3-container w3-padding w3-gray\"><h4>Recent Posts</h4></div>");
  11. res.write("<div class=\"w3-bar-block w3-white\">");
  12. sql.getRecentPosts().then(function(posts)
  13. {
  14. posts.forEach(function(p)
  15. {
  16. var url = '/' + p.category + '/' + p.url;
  17. res.write("<a class=\"w3-bar-item w3-button\" href='" + url + "'>" + p.name + "<br></a>");
  18. });
  19. res.write("</div></div>");
  20. resolve();
  21. })
  22. });
  23. }
  24. };