-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1.34 KB
/
index.html
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
---
layout: default
title: halyard
---
<div class="github-fork-ribbon-wrapper right">
<div class="github-fork-ribbon">
<a href="https://github.com/halyard/halyard">Fork me on GitHub</a>
</div>
</div>
<div class="header">
<h2>Configuration repos</h2>
<p>These are the various tools I use to configure my systems</p>
</div>
{% assign repos = site.repos | sort: 'weight', 'last' %}
{% for repo in repos %}
{% if repo.intro %}
{% assign intro = repo.intro %}
{% else %}
{% assign intro = "Looking to set up " | append: repo.reponame | append: "?" %}
{% endif %}
{% if repo.repourl %}
{% assign url = repo.repourl %}
{% else %}
{% assign url = "https://github.com/halyard/" | append: repo.reponame %}
{% endif %}
{% if repo.urlname %}
{% assign urlname = repo.urlname %}
{% else %}
{% assign urlname = "halyard/" | append: repo.reponame %}
{% endif %}
<div class="row">
<div class="install">
<h3>{{ intro }}</h3>
<h4>(Source: <a href="{{ url }}">{{ urlname }}</a>)</h4>
<pre>curl -sLo kickstart {{ repo.kickstart }}
sudo bash kickstart</pre>
</div>
<div class="description">{{ repo.content }}</div>
</div>
{% endfor %}
<div class="footer">
<p>For other things I work on, check out my <a href="http://blog.akerl.org">blog</a> or <a href="https://github.com/akerl">GitHub</a></p>
</div>