|
| 1 | +--- |
| 2 | +layout: es/default |
| 3 | +title: El equipo de Rust · El lenguaje de programación de Rust |
| 4 | +--- |
| 5 | + |
| 6 | +<style type="text/css"> |
| 7 | +.headshot { |
| 8 | + border: 1px solid #888; |
| 9 | + width: 140px; |
| 10 | +} |
| 11 | + |
| 12 | +.person { |
| 13 | + display: inline-block; |
| 14 | + position: relative; |
| 15 | + margin-bottom: 20px; |
| 16 | +} |
| 17 | +.lead { font-weight: bold; } |
| 18 | +.lead .name::after { content: " (lead)"; } |
| 19 | +.details { |
| 20 | + display: none; |
| 21 | + position: absolute; |
| 22 | + bottom: 0; |
| 23 | + left: 0; |
| 24 | + right: 0; |
| 25 | + background: rgba(0, 0, 0, 0.5); |
| 26 | + color: white; |
| 27 | + font-weight: normal; |
| 28 | +} |
| 29 | +.person:hover .details { |
| 30 | + display: block; |
| 31 | +} |
| 32 | + |
| 33 | +.headshots { |
| 34 | + text-align: center; |
| 35 | + margin: 0px auto; |
| 36 | + padding: 0; |
| 37 | + width: 700px; |
| 38 | + max-width: 100%; |
| 39 | + list-style: none; |
| 40 | +} |
| 41 | +</style> |
| 42 | + |
| 43 | +# El equipo de Rust |
| 44 | + |
| 45 | +El proyecto Rust está |
| 46 | +[gobernado](https://github.com/rust-lang/rfcs/blob/master/text/1068-rust-governance.md) |
| 47 | +por varios equipos, cada uno enfocado en una área de interés especifica. Aquí se |
| 48 | +encuentran listados en orden alfabético. |
| 49 | + |
| 50 | +Para contactar a un equipo, publica tu pregunta o comentario en [el foro |
| 51 | +interno](https://internals.rust-lang.org/) and tag your post with the category |
| 52 | +correspondiente a el nombre de cada equipo. Por favor notar que las cuestiones |
| 53 | +de seguridad deberían regirse al [proceso de revelación de seguridad de |
| 54 | +Rust](security.html). |
| 55 | + |
| 56 | +{% for team in site.data.team.teams %} |
| 57 | +<section id="{{ team.name | replace:' ','-' }}"> |
| 58 | +<h2> {{ page.localized-teams[team.name].name | default: team.name }} </h2> |
| 59 | + |
| 60 | +<strong>Responsabilidad</strong>: <em>{{ page.localized-teams[team.name].responsibility | default: team.responsibility }}</em> |
| 61 | + |
| 62 | +<br /> |
| 63 | + |
| 64 | +{% if team.email %} |
| 65 | + <strong>Contacto</strong>: |
| 66 | + <a href="mailto:{{ team.email | uri_escape }}">{{ team.email }}</a> |
| 67 | +{% endif %} |
| 68 | + |
| 69 | +<ul class="headshots"> |
| 70 | +{% for nick in team.members %} |
| 71 | + {% assign person = site.data.team.people[nick] %} |
| 72 | + {% if person.site %} |
| 73 | + {% assign sitename = person.site %} |
| 74 | + {% else %} |
| 75 | + {% assign sitename = "github" %} |
| 76 | + {% endif %} |
| 77 | + {% assign website = site.data.team.sites[sitename] %} |
| 78 | + <li class="person {% if team.lead and team.lead == nick %}lead{% endif %}"> |
| 79 | + <a href="{{ website.url | replace:'%nick',nick }}"> |
| 80 | + <div class="name">{{ person.name }}</div> |
| 81 | + <div class="details"> |
| 82 | + <div>irc: {% if person.irc %}{{ person.irc }}{% else %}{{ nick }}{% endif %}</div> |
| 83 | + {% if person.ex-teams %} |
| 84 | + <div>teams: {% for ex-team in person.ex-teams %}{% if forloop.first == false %}, {% endif %}{{ page.localized-ex-teams[ex-team] | default: ex-team }}{% endfor %}</div> |
| 85 | + {% endif %} |
| 86 | + </div> |
| 87 | + <img class="headshot" src="{{ website.avatar | replace:'%nick',nick }}" alt="{{ person.name }}"> |
| 88 | + </a> |
| 89 | +</li> |
| 90 | +{% endfor %} |
| 91 | +</ul> |
| 92 | +</section> |
| 93 | +{% endfor %} |
0 commit comments