|
|
<!DOCTYPE html> <html lang="en">
<head> <meta name="description" content="[blogo-summary]" /> <meta charset="utf-8"> <title>[blogo-title]</title> <meta name="title" content="[blogo-title]"> <meta name="description" content="[blogo-summary]">
<meta property="og:title" content="[blogo-title]" /> <meta property="og:description" content="[blogo-summary]" /> <meta property="og:url" content="[blogo-link]" /> <meta property="og:type" content="article" /> <meta property="og:image" content="[blogo-img]" /> <meta name="twitter:title" content="[blogo-title]"> <meta name="twitter:description" content="[blogo-summary]"> <meta name="twitter:image" content="[blogo-img]"> <meta name="twitter:card" content="summary_large_image"> <meta name="author" content="arnaucube">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="css/style.css">
<!-- highlightjs --> <!-- <link rel="stylesheet" href="js/highlightjs/atom-one-dark.css"> --> <link rel="stylesheet" href="js/highlightjs/gruvbox-dark.css"> <script src="js/highlightjs/highlight.pack.js"></script>
<!-- katex --> <link rel="stylesheet" href="js/katex/katex.min.css"> </head>
<body>
<!-- o_gradient_background" --> <nav id="mainNav" class="navbar navbar-default navbar-fixed-top" style="height:50px;font-size:130%;"> <div class="container"> <a href="/blog" style="color:#000;">Blog index</a> <div style="float:right;"> <a href="/" style="color:#000;display:inline-block;">arnaucube.com</a> <div class="onoffswitch" style="margin:10px;display:inline-block;" title="change theme"> <input onclick="switchTheme()" type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="themeSwitcher"> <label class="onoffswitch-label" for="themeSwitcher"></label> </div> </div> </div> <img style="height:5px; width:100%; margin-top:8px;" src="img/gradient-line.jpg" /> </nav>
<div class="container" style="margin-top:40px;max-width:800px;"> [blogo-content] </div>
<footer style="text-align:center; margin-top:100px;margin-bottom:50px;"> <div class="container"> <div class="row"> <ul class="list-inline"> <li><a href="https://twitter.com/arnaucube" style="color:gray;text-decoration:none;" target="_blank">twitter.com/arnaucube</a> </li> <li><a href="https://github.com/arnaucube" style="color:gray;text-decoration:none;" target="_blank">github.com/arnaucube</a> </li> </ul> </div> <div class="row" style="display:inline-block;"> Blog made with <a href="http://github.com/arnaucube/blogo/" target="_blank" style="color: gray;text-decoration:none;">Blogo</a> </div> </div> </footer>
<script> </script> <script src="js/external-links.js"></script> <script>hljs.initHighlightingOnLoad();</script> <script defer src="js/katex/katex.min.js"></script> <script defer src="js/katex/auto-render.min.js"></script> <script> document.addEventListener("DOMContentLoaded", function() { renderMathInElement(document.body, { displayMode: false, // customised options // • auto-render specific keys, e.g.: delimiters: [ {left: '$$', right: '$$', display: true}, {left: '$', right: '$', display: false}, {left: "\\[", right: "\\]", display: true}, {left: "\\(", right: "\\)", display: false}, ], // • rendering keys, e.g.: throwOnError : true }); });
/// let theme = localStorage.getItem("theme"); if ((theme === "light-theme")||(theme==null)) { theme = "light-theme"; document.getElementById("themeSwitcher").checked = false; } else if (theme === "dark-theme") { theme = "dark-theme"; document.getElementById("themeSwitcher").checked = true; } document.body.className = theme; localStorage.setItem("theme", theme);
function switchTheme() { theme = localStorage.getItem("theme"); if (theme === "light-theme") { theme = "dark-theme"; document.getElementById("themeSwitcher").checked = true; } else { theme = "light-theme"; document.getElementById("themeSwitcher").checked = false; } document.body.className = theme; localStorage.setItem("theme", theme);
console.log(theme); } </script> <script> function tagLinks(tagName) { var tags = document.getElementsByTagName(tagName); for (var i=0, hElem; hElem = tags[i]; i++) { if (hElem.parentNode.className=="row postThumb") { continue; } hElem.id = hElem.innerHTML.toLowerCase().replace(" ", "-"); hElem.innerHTML = "<a style='text-decoration:none;color:black;' href='#"+hElem.id+"'>"+hElem.innerHTML+"</a>"; } } tagLinks("h2"); tagLinks("h3"); tagLinks("h4"); tagLinks("h5"); </script> <script src="js/mermaid.min.js"></script>
</body> </html>
|