logo

litepub.social

Website of https://litepub.social/

default.html (487B)


  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>LitePub: {{ page.title | strip }}</title>
  6. <link href="{{ site.baseurl }}/assets/css/main.css" rel="stylesheet">
  7. </head>
  8. <body>
  9. <nav>
  10. {% include nav.html %}
  11. </nav>
  12. <div class="content">
  13. {% if page.title %}
  14. <h1>{{ page.title }}</h1>
  15. {% endif %}
  16. {% if page.status %}
  17. <h2>{{ page.status }} &mdash; {{ page.last_updated }}</h2>
  18. {% endif %}
  19. {{ content }}
  20. </div>
  21. </body>
  22. </html>