-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mentors.html: Use Materialize and coalaCSS
- Loading branch information
Showing
1 changed file
with
41 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,68 @@ | ||
<div class="main-content container-fluid"> | ||
<div class="row"> | ||
<div class="col-md-8 col-md-offset-2"> | ||
<div class="title-get-involved" >Hello there!</div> | ||
<br> | ||
<div class="description"> | ||
We are the mentors for coala in GSoC 2017.<br> | ||
<div class="col m8 offset-m2"> | ||
<h1 class="fine center">Hello there!</h1> | ||
<h4 class="light center"> | ||
We are the mentors for coala in GSoC 2017. | ||
<h4> | ||
<h4 class="light center"> | ||
Just drop a message on <a href="https://coala.io/chat" class="bear-link" >Gitter</a> - | ||
we'd love to help you personally.<br> | ||
</div> | ||
we'd love to help you personally. | ||
</h4> | ||
<br> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<section> | ||
<div class="container"> | ||
<div class="row showcase-gi"> | ||
<div ng-repeat="member in gic.mentorsList" class="card card-main showcase-card-gi"> | ||
<div class="empty"></div> | ||
<div class="card-action profile-data" > | ||
<img class="center-block profile-img" height="100" ng-src="{{ member.github_avatar_url }}"> | ||
<div class="person-name">{{ member.name }}</div> | ||
<div class="person-github-id-div"><a class="person-github-id" ng-href="https://github.com/{{member.github_handle}}">@{{ member.github_handle }}</a></div> | ||
<div class="person-github-bio">{{ member.bio }}</div> | ||
<div class="row user"> | ||
<div class="parent-wrapper"> | ||
<div class="parent"> | ||
<div ng-repeat="member in gic.mentorsList" class="card child card-main sc"> | ||
<div class="empty"></div> | ||
<div class="data thumbnail center" > | ||
<img class="center dp" height="100" ng-src="{{ member.github_avatar_url }}"> | ||
<div class="name center">{{ member.name }}</div> | ||
<div class="handle center"><a class="yellow-text text-darken-4" ng-href="https://github.com/{{member.github_handle}}">@{{ member.github_handle }}</a></div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<div class="main-content container-fluid"> | ||
<br><br> | ||
<div class="main-content container"> | ||
<div class="row"> | ||
<div class="col-md-8 col-md-offset-2"> | ||
<div class="title-get-involved" >Admins</div> | ||
<br> | ||
<div class="description"> | ||
We are the admins for coala in GSoC 2017.<br> | ||
Just drop a message on <a href="https://coala.io/chat" class="bear-link" >Gitter</a> | ||
</div> | ||
<div class="col m8 offset-m2"> | ||
<h1 class="fine center">Admins</h1> | ||
<h4 class="light center"> | ||
We are the admins for coala in GSoC 2017. | ||
</h4> | ||
<h4 class="light center"> | ||
Just drop a message on <a href="https://coala.io/chat" class="bear-link" >Gitter</a> | ||
</h4> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<section> | ||
<div class="container"> | ||
<div class="row showcase-gi"> | ||
<div ng-repeat="member in gic.adminsList" class="card card-main showcase-card-gi"> | ||
<div class="empty"></div> | ||
<div class="card-action profile-data" > | ||
<img class="center-block profile-img" height="100" ng-src="{{ member.github_avatar_url }}"> | ||
<div class="person-name">{{ member.name }}</div> | ||
<div class="person-github-id-div"><a class="person-github-id" ng-href="https://github.com/{{member.github_handle}}">@{{ member.github_handle }}</a></div> | ||
<div class="person-github-bio">{{ member.bio }}</div> | ||
<div class="row user"> | ||
<div class="parent-wrapper"> | ||
<div class="parent"> | ||
<div ng-repeat="member in gic.adminsList" class="card card-main child sc"> | ||
<div class="empty"></div> | ||
<div class="data thumbnail center"> | ||
<img class="center dp" height="100" ng-src="{{ member.github_avatar_url }}"> | ||
<div class="name center">{{ member.name }}</div> | ||
<div class="handle center"><a class="yellow-text text-darken-4" ng-href="https://github.com/{{member.github_handle}}">@{{ member.github_handle }}</a></div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|