mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-15 06:08:57 +03:00
23 lines
1.0 KiB
Markdown
23 lines
1.0 KiB
Markdown
---
|
|
layout: docs
|
|
title: Team
|
|
group: about
|
|
---
|
|
|
|
Material Design for Bootstrap is maintained by a small group of invaluable core contributors,
|
|
with the support and involvement of our community.
|
|
|
|
<div class="list-group bd-team">
|
|
{% for member in site.data.core-team %}
|
|
<div class="list-group-item">
|
|
<iframe class="github-btn" src="https://ghbtns.com/github-btn.html?user={{ member.user }}&type=follow"></iframe>
|
|
<a class="team-member" href="https://github.com/{{ member.user }}">
|
|
<img src="https://secure.gravatar.com/avatar/{{ member.gravatar }}" alt="@{{ member.user }}" width="32" height="32">
|
|
<strong>{{ member.name }}</strong> <small>@{{ member.user }}</small>
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
Get involved with Bootstrap development by [opening an issue](https://github.com/FezVrasta/bootstrap-material-design/issues/new) or submitting a pull request. Read our [contributing guidelines](https://github.com/FezVrasta/bootstrap-material-design/blob/master/CONTRIBUTING.md) for information on how we develop.
|