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.

44 lines
1.2 KiB

<!DOCTYPE html>
<html lang="en">
<head>
{% include "html_head.liquid" %}
<meta property="og:title" content="{{page.title}}">
<meta property="og:type" content="article">
<meta property="og:url" content="{{site.base_url}}/{{page.permalink}}">
<meta property="og:locale" content="en_US">
<meta property="og:description" content="{{page.description}}">
{% if page.data.header_image %}
<meta property="og:image" content="{{site.base_url}}/{{page.permalink}}{{page.data.header_image}}">
{% endif %}
{% if page.data.mathjax %}
<script>
MathJax = {
tex: {
inlineMath: [['$', '$'], ['\\(', '\\)']]
}
};
</script>
<script id="MathJax-script" async src="/js/mathjax/tex-svg.js"></script>
{% endif %}
</head>
<body>
{% include "header.liquid" %}
<article id="main">
<section>
{% if page.data.header_image %}
<figure class="fullwidth">
<img style="box-shadow: 1px 6px 14px #ba8" src="{{page.data.header_image}}">
</figure>
{% endif %}
{{ page.content }}
</section>
</article >
{% include "footer.liquid" %}
</body>
</html>