mlops/team.html

31 строка
931 B
HTML
Исходник Обычный вид История

2020-06-01 18:40:35 +03:00
---
2020-06-03 21:11:17 +03:00
layout: default
title: Meet the team
2020-06-11 21:41:13 +03:00
description: |
2020-06-12 08:14:24 +03:00
There is a growing team that maintains and builds the assets you find on this site.
2020-06-11 23:22:49 +03:00
Keep an eye on the <a href='https://github.com/about/careers'>GitHub Careers page</a> if you are interested in working with us.
2020-06-01 18:40:35 +03:00
---
2020-06-03 21:11:17 +03:00
<section class="intro team_intro">
<div class="image_box">
{%- include intro_team.svg -%}
</div>
<div class="text_box">
<h1>{{page.title}}</h1>
<p>{{page.description}}</p>
</div>
</section>
<div class="team_grid">
2020-06-01 18:40:35 +03:00
{% for author in site.team %}
2020-06-03 21:11:17 +03:00
<div class="team_item">
2020-06-04 13:25:30 +03:00
<a class="author_img_box" href="https://github.com/{{author.nick}}">
2020-06-03 21:11:17 +03:00
<img class="author_image" src="{{author.image}}" alt="{{ author.title }}">
2020-06-01 18:40:35 +03:00
</a>
2020-06-03 21:11:17 +03:00
<div class="text_box">
<h2>{{ author.title }}</h2>
<a href="https://github.com/{{author.nick}}">@{{author.nick}}</a>
{{author.content}}
</div>
2020-06-01 18:40:35 +03:00
</div>
{% endfor %}
</div>