forked from github/opensource.guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (50 loc) · 2.01 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
layout: default
---
<nav class="main-nav">
<div class="container-lg edged mx-auto clearfix">
<div class="float-sm-right">
<ul class="main-links d-flex flex-wrap flex-items-stretch border-left border-bottom border-sm-0 list-style-none">
<li class="d-inline-block border-right">
<a class="d-block p-3 p-sm-4" href="https://github.com/github/opensource.guide#readme">About</a>
</li>
<li class="d-inline-block border-right">
<a class="d-block p-3 p-sm-4" href="https://github.com/github/opensource.guide/blob/gh-pages/CONTRIBUTING.md">Contribute</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="bg-gray-light">
<header class="py-4 py-md-6">
<div class="container-lg mx-auto text-center px-3 pt-6">
<h1 class="alt-h1">Open Source Guides</h1>
<p class="alt-lead text-gray mb-md-5 col-md-8 mx-auto">
Open source software is made by people just like you. Learn how to launch and grow your project.
</p>
</div>
</header>
<div class="container-lg px-3 pb-6">
<div class="gut-md d-flex flex-wrap flex-items-stretch pb-md-6">
{% assign articles = site.articles | sort: 'order' %}
{% for article in articles %}
<div class="col-12 col-sm-9 mx-auto col-md-6 mt-4 mt-lg-5">
<a href="{{ article.url | relative_url }}" class="guide-cover {{ article.class }} card height-full d-block">
<div class="lh-none guide-cover-img text-center pt-4">
<img src="{{ site.baseurl }}/assets/images/illos/{{ article.class }}.svg" class="" alt="{{ article.title }} illustration">
</div>
<div class="flex-self-end p-4 text-center p-lg-5">
<h3 class="alt-h3 text-bold lh-condensed mb-2 text-black">
{{ article.title }}
</h3>
<div class="mb-0 text-gray">
{{ article.description | markdownify }}
</div>
</div>
</a>
</div>
{% endfor %}
</div>
</div>
</div>
{% include footer.html %}