-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
35 lines (31 loc) · 1.09 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
---
layout: page
title: KnowYourStack
---
<section>
<div class="row">
<div class="col-md-12">
<h2>Watched Stacks:</h2>
<div class="list-group">
{% assign stackPages = site.pages | where: "type", "stack" %}
{% for page in stackPages %}
<a href="{{page.url}}" class="list-group-item">{{page.title}}</a>
{% endfor %}
</div>
<div class="btn-group btn-block ">
<a href="{{ site.github_repo_url }}issues/new" class="btn btn-primary btn-block">
<i class="fa fa-plus" aria-hidden="true"></i> Add your own stack
</a>
</div>
</div>
</div>
</section>
<section>
<div class="row">
<div class="col-md-12">
<h2>About</h2>
<p>The goal of this site is to get a glimpse of the daily community activity on each stack. Currently it is just a "today"-snapshot of each acitivy, e.g. a new issue on GitHub powered by a small OSS project called <a href="https://code-inside.github.io/Sloader/">Sloader</a>.</p>
<p>Don't be shy and propose your favorite stack!</p>
</div>
</div>
</section>