diff options
Diffstat (limited to 'docs/_layouts')
-rw-r--r-- | docs/_layouts/README | 5 | ||||
-rw-r--r-- | docs/_layouts/default.html | 139 | ||||
-rw-r--r-- | docs/_layouts/home.html | 16 |
3 files changed, 0 insertions, 160 deletions
diff --git a/docs/_layouts/README b/docs/_layouts/README deleted file mode 100644 index 266b60e4..00000000 --- a/docs/_layouts/README +++ /dev/null @@ -1,5 +0,0 @@ -This directory defines the https://www.klipper3d.org/ website. The -site is hosted using "github pages" (which uses Jekyll to -automatically convert the markdown files in the docs/ directory to -html). In addition to the files in this directory, the docs/CNAME and -docs/_config.yml file also control the website generation. diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html deleted file mode 100644 index 5bbb3cca..00000000 --- a/docs/_layouts/default.html +++ /dev/null @@ -1,139 +0,0 @@ -<!DOCTYPE html> -<html> -<head> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> - {% seo %} - - <!-- Bootstrap css --> - <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> - - <!-- Fixup markdown code blocks --> - <style> - .markdown-body pre { - background-color: #f6f8fa; - line-height: 1.45; - overflow: auto; - padding: 16px; - } - .markdown-body code, .markdown-body tt { - background-color: rgba(27,31,35,.1); - color: inherit; - border-radius: 3px; - font-size: 85%; - margin: 0; - padding: .2em .4em; - } - .markdown-body pre code { - padding: 0; - background: transparent; - } - - .markdown-body table td, .markdown-body table th { - border: 1px solid #dfe2e5; - padding: 6px 13px; - } - .markdown-body table tr { - background-color: #fff; - border-top: 1px solid #c6cbd1; - } - .markdown-body table tr:nth-child(2n) { - background-color: #f6f8fa; - } - .markdown-body table { - margin-bottom: 16px; - } - </style> -</head> -<body> - - <!-- Navbar at top of page --> - <nav class="navbar navbar-expand-md navbar-light bg-light"> - <a class="navbar-brand" href="/"> - <img src="img/klipper-logo-small.png" alt="Klipper"> - </a> - <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation"> - <span class="navbar-toggler-icon"></span> - </button> - <div class="collapse navbar-collapse" id="navbarNavAltMarkup"> - <div class="navbar-nav ml-auto"> - <a class="nav-item nav-link" href="Overview.html">Documentation</a> - <a class="nav-item nav-link" href="https://github.com/KevinOConnor/klipper">Github</a> - </div> - </div> - </nav> - - <div class="container-fluid"> - <div class="row"> - - <!-- Sidebar for table of contents --> - <nav class="d-none d-md-block col-md-3 bg-light"> - <ul id="toc" class="px-0" style="list-style: none"> - </ul> - </nav> - - <!-- Main markdown contents --> - <main class="col-md-9 ml-md-auto px-4"> - <div class="markdown-body" style="max-width: 800px"> - {{ content }} - </div> - </main> - - </div> - </div> - - <!-- Google analytics javascript --> - {% if site.google_analytics %} - <script> - (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ - (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), - m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) - })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); - ga('create', '{{ site.google_analytics }}', 'auto'); - ga('send', 'pageview'); - </script> - {% endif %} - - <!-- Bootstrap / jquery javascript --> - <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> - <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script> - <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> - - <!-- Javascript to automatically add table of contents --> - <style> - .toc-item { - font-size: 80%; - line-height: 80%; - padding-top: .5em; - padding-bottom: .5em; - } - .toc-item-H1 { margin-left: 0px; } - .toc-item-H2 { margin-left: 8px; } - .toc-item-H3, .toc-item-H4, .toc-item-H5, .toc-item-H6 { margin-left: 16px; } - </style> - <script> - var levels = []; - $('.markdown-body').find('h1, h2, h3, h4, h5, h6').each(function() { - var $item = $(this); - var $id = $(this).attr('id'); - var li = $('<li class="toc-item"/>'); - var tag = $item.prop("tagName"); - while (levels.length && tag <= levels[levels.length - 1]) { - levels.pop(); - } - levels.push(tag); - li.addClass("toc-item-H" + levels.length); - var a = $('<a/>', {text: $item.text(), href: '#' + $id, title: $item.text()}); - a.appendTo(li); - $('#toc').append(li); - }); - </script> - - <!-- Javascript to automatically fix links to files outside docs/ --> - <script> - $('.markdown-body').find('a[href^="../"]').each(function() { - this.href = $(this).attr("href").replace(/^\.\./, "https://github.com/KevinOConnor/klipper/blob/master"); - }); - </script> -</body> -</html> diff --git a/docs/_layouts/home.html b/docs/_layouts/home.html deleted file mode 100644 index 6f213fd0..00000000 --- a/docs/_layouts/home.html +++ /dev/null @@ -1,16 +0,0 @@ ---- -# This file defines the main https://www.klipper3d.org/ page. -layout: default ---- -<p class="text-center"><img src="img/klipper-logo.png"/></p> - -<p>Klipper is a 3d-Printer firmware. It combines the power of a general -purpose computer with one or more micro-controllers. See the -<a href="/Features.html">features</a> document for more information on why you -should use Klipper.</p> - -<p>To begin using Klipper start by <a href="/Installation.html">installing</a> it.</p> - -<p>Klipper is Free Software. Read the <a href="/Overview.html">documentation</a> or -view -<a href="https://github.com/KevinOConnor/klipper">the Klipper code on github</a>.</p> |