Files
velero/site/_includes/contributors.html
Lee Springer d995018a3e add velero.io site content, move docs to under site/docs (#1489)
* Adding in Jekyll site | Adjusting gitignore for Jekyll build | Moving docs to site folder

Signed-off-by: Lee Springer <lee@smalltalk.agency>

Adding in Jekyll site | Adjusting gitignore for Jekyll build | Moving docs to site folder

Signed-off-by: Lee Springer <lee@smalltalk.agency>

* Restore main.go to original location

Signed-off-by: Lee Springer <lee@smalltalk.agency>

* Updates to footer

Signed-off-by: Lee Springer <lee@smalltalk.agency>

* Updates to homepage links

Signed-off-by: Lee Springer <lee@smalltalk.agency>

* Content updates

Signed-off-by: Lee Springer <lee@smalltalk.agency>
2019-05-17 10:56:03 -07:00

26 lines
1.2 KiB
HTML

<div class="row">
<div class="col">
<h2 class="mb-2">The {{ site.title }} Team</h2>
</div>
</div>
<div class="row">
<div class="col">
<p>{{ site.title }} is released as open source software and provides community support through our GitHub project page.
If you encounter an issue or have a question, feel free to reach out on the <strong><a href="{{ site.gh_repo }}/issues" class="light">GitHub issues page for {{ site.title }}</a></strong>.</p>
<p>The Velero project team welcomes contributions from the community, please see our <strong><a href="https://github.com/heptio/velero/blob/master/CONTRIBUTING.md" class="light">contributing documentation</a></strong>.
</p>
</div>
</div>
<div class="row thumbnail-grid mt-5">
{% for person in site.contributors %}
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="media thumbnail-item">
<img src="{{ person.image }}" class="rounded-circle" alt="Person" />
<div class="media-body align-self-center">
<h6><a href="#">{{ person.first_name }} {{ person.last_name }}</a></h6>
{{ person.content | markdownify }}
</div>
</div>
</div>
{% endfor %}
</div>