File: index.html

package info (click to toggle)
git-secret 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,724 kB
  • sloc: sh: 4,580; makefile: 162; xml: 31; python: 22
file content (43 lines) | stat: -rw-r--r-- 875 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
---
layout: default
---

<div class="home">

  <img src="{{ "/images/git-secret-big.png" | prepend: site.baseurl }}"
       alt="git-secret"
       title="git-secret"
       class="home-logo-image" />

  <h1>Synopsis</h1>

  {% capture markdown_file %}
    {% include why.md %}
  {% endcapture %}

  {{ markdown_file | markdownify }}

  {% for post in site.categories.usage %}
    {{ post.content }}
  {% endfor %}

  <h2 class="page-heading" id="commands">Command Reference</h2>

  <ul class="post-list">
    {% for post in site.categories.command %}
      <li>
        <h2>
          <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
            {{ post.title }}
          </a>
        </h2>
      </li>
    {% endfor %}
  </ul>

  <p class="rss-subscribe">
    subscribe
    <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a>
  </p>

</div>