Front website https://natronics.org
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.

43 lines
1.2 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. {% include "html_head.liquid" %}
  5. <meta property="og:title" content="{{page.title}}">
  6. <meta property="og:type" content="article">
  7. <meta property="og:url" content="{{site.base_url}}/{{page.permalink}}">
  8. <meta property="og:locale" content="en_US">
  9. <meta property="og:description" content="{{page.description}}">
  10. {% if page.data.header_image %}
  11. <meta property="og:image" content="{{site.base_url}}/{{page.permalink}}{{page.data.header_image}}">
  12. {% endif %}
  13. {% if page.data.mathjax %}
  14. <script>
  15. MathJax = {
  16. tex: {
  17. inlineMath: [['$', '$'], ['\\(', '\\)']]
  18. }
  19. };
  20. </script>
  21. <script id="MathJax-script" async src="/js/mathjax/tex-svg.js"></script>
  22. {% endif %}
  23. </head>
  24. <body>
  25. {% include "header.liquid" %}
  26. <article id="main">
  27. <section>
  28. {% if page.data.header_image %}
  29. <figure class="fullwidth">
  30. <img style="box-shadow: 1px 6px 14px #ba8" src="{{page.data.header_image}}">
  31. </figure>
  32. {% endif %}
  33. {{ page.content }}
  34. </section>
  35. </article >
  36. {% include "footer.liquid" %}
  37. </body>
  38. </html>