2021-06-12 04:57:16 +00:00
<!DOCTYPE html>
< html lang = "{{ page.lang | default: site.lang | default: " en " } } " >
{%- include head.html -%}
2021-06-15 16:42:48 +00:00
< link rel = "icon" type = "image/svg+xml" href = "/assets/images/favicon.svg" >
< link rel = "icon" type = "image/png" href = "/assets/images/favicon.png" >
2021-06-12 04:57:16 +00:00
< style >
main {
margin: 0 50px;
}
2021-06-13 01:18:34 +00:00
#top-description {
2021-06-13 05:07:02 +00:00
font-size: xx-large;
2021-06-13 01:18:34 +00:00
margin-top: 3em;
margin-left: 1em;
}
#intro {
font-size: x-large;
font-weight: lighter;
margin-top: 2em;
margin-left: 2em;
}
2021-06-13 05:07:02 +00:00
.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;
}
2021-06-12 04:57:16 +00:00
dl {
display: grid;
grid-template-rows: auto auto;
grid-auto-flow: column;
}
dl dt {
font-weight: normal;
font-size: x-large;
text-align: center;
2021-06-13 01:18:34 +00:00
border-bottom: 1px solid #8d8;
2021-06-12 04:57:16 +00:00
margin: 20px 30px;
2021-06-13 05:07:02 +00:00
height: 2em;
2021-06-12 04:57:16 +00:00
}
dl dd {
margin: 0 30px 20px 30px;
min-height: 3em;
color: #828282;
font-size: medium;
}
< / style >
< body >
2021-06-13 01:18:34 +00:00
< 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 >
2021-06-12 04:57:16 +00:00
{%- include header.html -%}
< main class = "page-content" aria-label = "Content" >
{{ content }}
< / main >
{%- include footer.html -%}
< / body >
< / html >