Node.js Blog System
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.
 
 

14 lines
508 B

  1. <%- include("../head.ejs") %>
  2. <div class="container">
  3. <h1 class="mb-1"><%= article.title %></h1>
  4. <div class="text-muted mb-3">
  5. <%= article.createdAt.toLocaleString("ru-RU", {dateStyle:"short", timeStyle: "short"}) %> UTC
  6. </div>
  7. <div id="out">
  8. <%- article.sanitizedHtml %>
  9. </div>
  10. <script data-isso="https://comments.rinri-d.xyz/" src="https://comments.rinri-d.xyz/js/embed.min.js"></script>
  11. <section id="isso-thread"></section>
  12. </div>
  13. <%- include("../foot.ejs") %>