|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 6 | + |
| 7 | + <title>About</title> |
| 8 | + |
| 9 | + <meta name="description" content=""> |
| 10 | + <meta name="image" content=""> |
| 11 | + |
| 12 | + <meta itemprop="name" content="About"> |
| 13 | + <meta itemprop="description" content=""> |
| 14 | + <meta itemprop="image" content=""> |
| 15 | + |
| 16 | + <meta name="og:title" content="About"> |
| 17 | + <meta name="og:description" content=""> |
| 18 | + |
| 19 | + <meta name="og:url" content="/about/"> |
| 20 | + <meta name="og:site_name" content="About"> |
| 21 | + <meta name="og:type" content="article"> |
| 22 | + |
| 23 | + <meta name="article:tag" content=""> |
| 24 | + <link rel="stylesheet" type="text/css" href="/css/style.css"> |
| 25 | + |
| 26 | + |
| 27 | +<script type="application/javascript"> |
| 28 | +var doNotTrack = false; |
| 29 | +if (!doNotTrack) { |
| 30 | + window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date; |
| 31 | + ga('create', 'UA-123743925-1', 'auto'); |
| 32 | + |
| 33 | + ga('send', 'pageview'); |
| 34 | +} |
| 35 | +</script> |
| 36 | +<script async src='https://www.google-analytics.com/analytics.js'></script> |
| 37 | + |
| 38 | +</head> |
| 39 | + |
| 40 | +<body> |
| 41 | + |
| 42 | +<header> |
| 43 | + |
| 44 | + <a href="/" style="float: left;color:#ff3b30;">Kernelim Ltd</a> |
| 45 | + |
| 46 | + <a href="/archives/" style="color:#777;">Archives</a> <a href="/about/" style="color:#777;">About</a> |
| 47 | + |
| 48 | + |
| 49 | + |
| 50 | + <a href="/index.xml" style="color:#777;float: right;"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-rss"><path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle></svg></a> |
| 51 | +</header> |
| 52 | + |
| 53 | + |
| 54 | +<div id="loadingMask" style="width: 100%; height: 100%; position: fixed; background: #fff;"></div> |
| 55 | +<script> |
| 56 | +function fadeOut(el) { |
| 57 | + el.style.opacity = 1; |
| 58 | + |
| 59 | + var last = +new Date(); |
| 60 | + var tick = function() { |
| 61 | + el.style.opacity = +el.style.opacity - (new Date() - last) / 80; |
| 62 | + last = +new Date(); |
| 63 | + |
| 64 | + |
| 65 | + if (el.style.opacity > 0) { |
| 66 | + (window.requestAnimationFrame && requestAnimationFrame(tick)) || setTimeout(tick, 16); |
| 67 | + } else { |
| 68 | + el.style.display='none'; |
| 69 | + } |
| 70 | + }; |
| 71 | + |
| 72 | + tick(); |
| 73 | +} |
| 74 | + |
| 75 | +function ready(fn) { |
| 76 | + if (document.attachEvent ? document.readyState === "complete" : document.readyState !== "loading") { |
| 77 | + el = document.getElementById('loadingMask'); |
| 78 | + fadeOut(el); |
| 79 | + var elements = document.querySelectorAll("img"); |
| 80 | + Array.prototype.forEach.call(elements, function(el, i) { |
| 81 | + if (el.getAttribute("alt")) { |
| 82 | + const caption = document.createElement('figcaption'); |
| 83 | + var node = document.createTextNode(el.getAttribute("alt")); |
| 84 | + caption.appendChild(node); |
| 85 | + const wrapper = document.createElement('figure'); |
| 86 | + wrapper.className = 'image'; |
| 87 | + el.parentNode.insertBefore(wrapper, el); |
| 88 | + el.parentNode.removeChild(el); |
| 89 | + wrapper.appendChild(el); |
| 90 | + wrapper.appendChild(caption); |
| 91 | + } |
| 92 | + }); |
| 93 | + |
| 94 | + } else { |
| 95 | + document.addEventListener('DOMContentLoaded', fn); |
| 96 | + } |
| 97 | +} |
| 98 | +window.onload = ready; |
| 99 | +</script> |
| 100 | + |
| 101 | +<div class="content"> |
| 102 | + <h1>About <aside></aside></h1> |
| 103 | + <p>All software provided here is published according to the respective open source licenses.</p> |
| 104 | + |
| 105 | +<p>To inquire about additional support, please <a href=" mailto:[email protected]" >email me </a>. </p> |
| 106 | + |
| 107 | +<p> — Dan Aloni</p> |
| 108 | + |
| 109 | +</div> |
| 110 | + |
| 111 | + |
| 112 | + |
| 113 | + |
| 114 | +<footer> |
| 115 | + <p></p> |
| 116 | +</footer> |
| 117 | +</body> |
| 118 | +</html> |
| 119 | + |
0 commit comments