File: top.html

package info (click to toggle)
lnav 0.13.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 60,084 kB
  • sloc: cpp: 215,599; ansic: 59,220; sh: 4,650; makefile: 3,578; python: 1,197; sql: 315; xml: 264; javascript: 18
file content (74 lines) | stat: -rw-r--r-- 1,659 bytes parent folder | download
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!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>
    #top-description {
        font-size: xx-large;
        margin-top: 3em;
        margin-left: 1em;
    }

    #intro {
        font-size: x-large;
        font-weight: lighter;
        margin-top: 2em;
    }

    #intro p {
        width: auto;
    }

    .section h2 {
        padding-left: 1em;
        padding-right: 1em;
        text-align: left;
        font-weight: normal;
        font-size: xx-large;
        border-bottom: 1px solid #8d8;
    }

    .section h3 {
        padding: 1em 2em 1em 2em;
        text-align: center;
        font-weight: normal;
        font-size: x-large;
        border-bottom: 1px solid #8d8;
    }

    .section-contents {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-contents p {
        margin-top: 2em;
        margin-left: 1em;
        margin-right: 1em;
        width: 30em;
        font-size: large;
    }
</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>