summaryrefslogtreecommitdiffstats
path: root/docs/_layouts/top.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 17:44:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 17:44:55 +0000
commit5068d34c08f951a7ea6257d305a1627b09a95817 (patch)
tree08213e2be853396a3b07ce15dbe222644dcd9a89 /docs/_layouts/top.html
parentInitial commit. (diff)
downloadlnav-upstream.tar.xz
lnav-upstream.zip
Adding upstream version 0.11.1.upstream/0.11.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'docs/_layouts/top.html')
-rw-r--r--docs/_layouts/top.html78
1 files changed, 78 insertions, 0 deletions
diff --git a/docs/_layouts/top.html b/docs/_layouts/top.html
new file mode 100644
index 0000000..75be485
--- /dev/null
+++ b/docs/_layouts/top.html
@@ -0,0 +1,78 @@
+<!DOCTYPE html>
+<html lang="{{ page.lang | default: site.lang | default: "en" }}">
+
+{%- include head.html -%}
+
+<link rel="icon" type="image/svg+xml" href="/assets/images/favicon.svg">
+<link rel="icon" type="image/png" href="/assets/images/favicon.png">
+
+<style>
+ main {
+ margin: 0 50px;
+ }
+
+ #top-description {
+ font-size: xx-large;
+ margin-top: 3em;
+ margin-left: 1em;
+ }
+
+ #intro {
+ font-size: x-large;
+ font-weight: lighter;
+ margin-top: 2em;
+ margin-left: 2em;
+ }
+
+ .dlrow {
+ display: grid;
+ align-items: start;
+ grid-template-columns: repeat(auto-fit, minmax(22em, 1fr));
+ width: 100%;
+ }
+
+ p:before, #top-description:before {
+ content: "";
+ width: 6em;
+ display: block;
+ overflow: hidden;
+ }
+
+ dl {
+ display: grid;
+ grid-template-rows: auto auto;
+ grid-auto-flow: column;
+ }
+ dl dt {
+ font-weight: normal;
+ font-size: x-large;
+ text-align: center;
+ border-bottom: 1px solid #8d8;
+ margin: 20px 30px;
+ height: 2em;
+ }
+ dl dd {
+ margin: 0 30px 20px 30px;
+ min-height: 3em;
+ color: #828282;
+ font-size: medium;
+ }
+</style>
+
+<body>
+
+<a href="https://github.com/tstack/lnav">
+ <img loading="lazy" width="149" style="position: absolute; z-index: 100" height="149" src="https://github.blog/wp-content/uploads/2008/12/forkme_left_green_007200.png?resize=149%2C149" class="attachment-full size-full" alt="Fork me on GitHub" data-recalc-dims="1">
+</a>
+
+{%- include header.html -%}
+
+<main class="page-content" aria-label="Content">
+ {{ content }}
+</main>
+
+{%- include footer.html -%}
+
+</body>
+
+</html>