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.

42 lines
1.4 KiB

  1. const Promise = require('promise');
  2. const sql = require('../utils/sql');
  3. module.exports=
  4. {
  5. main: function(res)
  6. {
  7. console.log("sidebar called");
  8. return new Promise(function(resolve, reject)
  9. {
  10. res.write("<div class=\"w3-card w3-margin\">");
  11. res.write(" <div class=\"w3-container w3-padding\">\n" +
  12. "\n" +
  13. " <h4>Popular Posts</h4>\n" +
  14. "\n" +
  15. " </div>");
  16. res.write("<ul class=\"w3-ul w3-hoverable w3-white\">");
  17. sql.getCategories().then(function(categories)
  18. {
  19. console.log(categories[0].name);
  20. categories.forEach(function(cat)
  21. {
  22. //res.write(cat.name);
  23. console.log(cat);
  24. res.write("<li class=\"w3-padding-16\">");
  25. //res.write("<a href=\"#\#\" class=\"w3-bar-item w3-button\" style=\"width=100%\">" + cat.name + "</a>");
  26. res.write("<a href='jrtechs.net'><span class=\"w3-large\">" + cat.name + "</span><br></a>");
  27. res.write("</li>");
  28. });
  29. res.write("</ul></div>");
  30. resolve();
  31. })
  32. });
  33. }
  34. };