article.ejs 718 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <meta name="viewport" content="width=device-width, initial-scale=1"/>
  6. <title><%= message.title %></title>
  7. <meta name="theme-color" content="#ffffff"/>
  8. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
  9. <link rel="stylesheet" href="/public/main.css">
  10. </head>
  11. <body>
  12. <div class="container" style="max-width: 960px">
  13. <div style="margin: 16px 16px 16px 24px">
  14. <h1 class="title"><%= message.title %></h1>
  15. <h2 class="subtitle"><%- message.description %></h2>
  16. <article id="article">
  17. <%- message.content %>
  18. </article>
  19. </div>
  20. </div>
  21. </body>
  22. </html>