-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
141 lines (140 loc) · 6.77 KB
/
about.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
---
layout: default
title: About Dwoo
subtitle:
nav: aboutnav
redirect_from:
- /LICENSE
---
<div class="main">
<section id="overview" class="bgc-light-gray pb-30 pt-30">
<div class="container">
<h2 class="mb-40 mt-30 text-center">Overview</h2>
<div class="row">
<div class="col-md-4 text-center">
<div class="item">
<img src="/assets/img/icon-stars.png" alt="GitHub Stars" title="GitHub Stars" class="mb-10">
<h2 class="mb-10">
{% for repo in site.github.public_repositories %}{% if repo.name == 'dwoo' %}{{ repo.stargazers_count }}{% endif %}{% endfor %}
</h2>
<p>GitHub Stars</p>
</div>
</div>
<div class="col-md-4 text-center">
<div class="item">
<img src="/assets/img/icon-download.png" alt="Docker Container Downloads" title="Dwoo Downloads" class="mb-10">
<h2 class="mb-10">{{ site.data.packagist.package.downloads.total }}</h2>
<p>Dwoo Downloads</p>
</div>
</div>
<div class="col-md-4 text-center">
<div class="item">
<img src="/assets/img/icon-lightbulb.png" alt="Third party projects using Docker" title="Available Plugins" class="mb-10">
<h2 class="mb-10">60+</h2>
<p>Available Plugins</p>
</div>
</div>
</div>
</div>
</section>
<section id="authors" class="pb-30">
<div class="container">
<hr class="mt-0">
<h2 class="mb-50 mt-50 text-center">Meet the authors...</h2>
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-4 offset-lg-1 pb-15">
<div class="card card-profile m-b-0">
<div class="card-heading"></div>
<div class="card-block text-center">
<img class="card-profile-img img-responsive"
src="https://avatars3.githubusercontent.com/u/84061?v=3&s=100">
<h5 class="card-title">David Sanchez</h5>
<p class="card-text m-b">
Maintainer of Dwoo since 2013,<br>creating releases since <strong>v.1.2</strong>.
</p>
</div>
<div class="card-footer">
<a href="//github.com/emulienfou" target="_blank" class="btn btn-success btn-sm m-b">
<span class="fa fa-github"></span> View GitHub
</a>
</div>
</div>
</div>
<div class="col-sm-12 col-md-12 col-lg-4 offset-lg-2 pb-15">
<div class="card card-profile m-b-0">
<div class="card-heading"></div>
<div class="card-block text-center">
<img class="card-profile-img img-responsive"
src="https://avatars3.githubusercontent.com/u/183678?v=3&s=100">
<h5 class="card-title">Jordi Boggiano</h5>
<p class="card-text m-b">
Creator of Dwoo,<br>creating releases until <strong>v1.1.1</strong>.
</p>
</div>
<div class="card-footer">
<a href="//github.com/Seldaek" target="_blank" class="btn btn-success btn-sm m-b">
<span class="fa fa-github"></span> View GitHub
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="contributors" class="bgc-light-gray pb-30 pt-30">
<div class="container">
<h2 class="mb-50 mt-50 text-center">Contributors</h2>
<ul class="media-list media-list-users list-group mb-20">
{% for contributor in site.github.contributors %}
{% if contributor.id != 8518239 %}
<li class="list-group-item">
<div class="media w-100">
<img class="media-object rounded-circle mr-3" src="{{ contributor.avatar_url }}&s=42">
<div class="media-body align-self-center">
<a href="{{ contributor.html_url }}" target="_blank"
class="btn btn-outline-success btn-sm float-right">
<span class="icon icon-add-user"></span> View GitHub
</a>
{% for c in site.data.contributors %}
{% if c[contributor.id].name %}
<strong>{{ c[contributor.id].name }}</strong>
{% endif %}
{% endfor %}
<small>@{{ contributor.login }}</small>
</div>
</div>
</li>
{% endif %}
{% endfor %}
</ul>
<p>
Get involved with Dwoo development by
<a href="https://github.com/dwoo-project/dwoo/issues/new" target="_blank">opening an issue</a>
or submitting a pull request.
</p>
</div>
</section>
<section id="milestones" class="pb-30">
<div class="container">
<hr class="mt-0">
<h2 class="mb-20 mt-20 pt-80 text-center">Dwoo Milestones</h2>
<div class="timeline">
<ul>
{% for milestone in site.data.milestones %}
{% if milestone.type == 'released' %}
<li class="wow fadeInRight"><p>{{ milestone.date | date: "%B %-d, %Y" }}: {{ milestone.text }}</p></li>
{% else %}
<li class="featured {{ milestone.type }} wow fadeInLeft"><div><h5>{{ milestone.date | date: "%B %-d, %Y" }}: {{ milestone.text }}</h5></div></li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
</section>
<section id="license" class="bgc-light-gray pb-30 pt-30">
<div class="container">
<h2 class="mb-50 mt-50 text-center">License</h2>
{% include license.html %}
</div>
</section>
</div>