From 81a1359f60d209f4a1df86b3f5ae51d3efbb4d82 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Sun, 11 Feb 2024 22:41:14 +0100 Subject: Added DNA k-mer post draft --- _layouts/base.html | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to '_layouts') diff --git a/_layouts/base.html b/_layouts/base.html index aa4be41..12202d9 100644 --- a/_layouts/base.html +++ b/_layouts/base.html @@ -4,7 +4,7 @@ - + {% if page.title %}{{ page.title | escape }} - {{ site.title | escape }} @@ -17,7 +17,7 @@ <style> :root { - --body-max-width: 1600px; + --body-max-width: 1200px; --border-color: gainsboro; --border-size: 1px; --border-style: solid; @@ -61,6 +61,10 @@ text-decoration: none; } + a:hover { + text-decoration: underline; + } + h1, h2, h3 { line-height: initial; } @@ -247,5 +251,11 @@ <hr> <p><small>This page's most recent build occurred on {{ site.time | date: "%A, %-d %B, %Y" }} and is also available as <a href="/feed.xml" target="_blank">RSS feed</a>.</small></p> </footer> + + {% if page.mathjax %} + <script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> + <script src="https://cdn.jsdelivr.net/npm/mathjax@3.0.1/es5/tex-mml-chtml.js" async></script> + {% endif %} + </body> </html> -- cgit v1.2.3