Files
hestiacp/docs/team.md

39 lines
1.2 KiB
Markdown
Raw Normal View History

2024-03-19 22:05:27 +03:00
---
layout: page
title: Команда
2024-03-19 22:05:27 +03:00
---
<style>
.VPTeamPageSection {
margin-top: 50px !important;
}
</style>
2024-03-19 22:05:27 +03:00
<script setup>
import { VPTeamPage, VPTeamPageTitle, VPTeamPageSection, VPTeamMembers } from "vitepress/theme";
import { projectManagers, teamMembers, teamRpm } from "./_data/team";
2024-03-19 22:05:27 +03:00
</script>
<VPTeamPageTitle>
<template #title>Команда</template>
2024-03-19 22:05:27 +03:00
<template #lead>
Разработка Hestia осуществляется международной командой, некоторые из участников которой представлены ниже.
2024-03-19 22:05:27 +03:00
</template>
</VPTeamPageTitle>
<VPTeamPageSection>
<template #title>Руководители проекта</template>
2024-03-19 22:05:27 +03:00
<template #members>
<VPTeamMembers :members="projectManagers" />
</template>
</VPTeamPageSection>
<VPTeamPageSection>
<template #title>Участники команды</template>
2024-03-19 22:05:27 +03:00
<template #members>
<VPTeamMembers :members="teamMembers" />
</template>
</VPTeamPageSection>
<VPTeamPageSection>
<template #title>Сопровождающий RPM-версии</template>
2024-03-19 22:05:27 +03:00
<template #members>
<VPTeamMembers :members="teamRpm" />
2024-03-19 22:05:27 +03:00
</template>
</VPTeamPageSection>