mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
eadec1cbe3
Changes: 1. Added navigation bar 2. Added `installation.md` 3. Added `why.md` 4. Added favicons Closes #66, closes #67, closes #68
44 lines
861 B
HTML
44 lines
861 B
HTML
---
|
|
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">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>
|