index.html (2828B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | <!doctype html> <html class="no-js" lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>Unixkoans</title> <meta name="description" content="Unix koans"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="apple-touch-icon" href="apple-touch-icon.png"> <link rel="stylesheet" href="css/normalize.css"> <link rel="stylesheet" href="css/main.css"> <script src="js/vendor/modernizr-2.8.3.min.js"></script> </head> <body> <!--[if lt IE 8]> <p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> <![endif]--> <section> <header> <a href="https://unixkoans.com" title="Unixkoans"><img src="img/uk-logo.png" alt="Unixkoans" /></a> </header> <article> <h2>Web services</h2> <ul> <li><a href="https://planet.unixkoans.com">RSS Planet</a></li> <li><a href="https://paste.unixkoans.com">Temporary Paste</a></li> <li><a href="https://git.unixkoans.com">Git Repositories</a></li> <li><a href="https://ci.unixkoans.com">Jenkins CI</a></li> <li><a href="https://sync.unixkoans.com">Syncthing</a></li> <li><a href="https://dl.unixkoans.com">Debian Repositories</a></li> </ul> <h2>Colophon</h2> <ul> <li><a href="https://www.debian.org">Debian</a></li> <li><a href="https://tt-rss.org">Tiny Tiny RSS</a></li> <li><a href="https://github.com/claudehohl/Stikked">Stikked</a></li> <li><a href="http://git.2f30.org/stagit/">Stagit</a></li> <li><a href="https://jenkins.io">Jenkins</a></li> <li><a href="https://syncthing.net">Syncthing</a></li> </ul> </article> <footer> Copyleft (c) 2017 Unixkoans </footer> </section> <!-- Google Analytics: change UA-XXXXX-X to be your site's ID. --> <script> (function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]= function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date; e=o.createElement(i);r=o.getElementsByTagName(i)[0]; e.src='https://www.google-analytics.com/analytics.js'; r.parentNode.insertBefore(e,r)}(window,document,'script','ga')); ga('create','UA-XXXXX-X','auto');ga('send','pageview'); </script> </body> </html> |