-
-
Notifications
You must be signed in to change notification settings - Fork 976
docs: about #673
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
docs: about #673
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
3823dfe
docs: move update into about section
Shinigami92 f6af69f
docs: restructure sidebar
Shinigami92 b3297d4
docs: team page
Shinigami92 ef87c28
docs: fix link
ejcheng 873b864
docs: work on teams page
Shinigami92 44c65e6
docs: make team page more fancy
Shinigami92 4e62bc8
docs: add redirect for update.html
Shinigami92 b964e12
docs: reorder nav
Shinigami92 48ffe20
docs: add social logos
Shinigami92 151cb88
docs: improve layout
Shinigami92 a94f407
docs: reduce avatar size
Shinigami92 d57fad9
docs: improve roles wrapping
Shinigami92 0d4269e
docs: fix link
Shinigami92 eed17dd
Merge branch 'main' into docs-about
Shinigami92 1ee05d5
docs: make announcements navigatable via sidebar
Shinigami92 12c3c76
docs: add xDivisionByZerox as contributor
Shinigami92 c49ad0d
Update members.json
Shinigami92 4ce9437
Update members.json
Shinigami92 cb9c6ff
Merge branch 'main' into docs-about
Shinigami92 b1d6877
Update members.json
pkuczynski f88dba6
Merge branch 'main' into docs-about
ST-DDT 946b676
Merge branch 'main' into docs-about
Shinigami92 af0f6cf
chore: sort by alphabet
Shinigami92 5e7601f
Merge branch 'main' into docs-about
Shinigami92 f1fee9a
Merge branch 'main' into docs-about
ST-DDT File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
editLink: false | ||
--- | ||
|
||
# Announcements | ||
|
||
- [2022-01-14 - An update from the Faker team](./announcements/2022-01-14) |
This file contains hidden or 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
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
title: Team | ||
--- | ||
|
||
<script setup> | ||
import TeamPage from './team/TeamPage.vue' | ||
</script> | ||
|
||
<TeamPage /> | ||
ST-DDT marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export interface Member { | ||
readonly name: string; | ||
readonly github: string; | ||
readonly gitlab?: string; | ||
readonly twitter?: string; | ||
readonly roles: readonly string[]; | ||
} |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<script lang="ts" setup> | ||
import type { Member } from './TeamMember'; | ||
|
||
defineProps<{ member: Member }>(); | ||
</script> | ||
|
||
<template> | ||
<div class="TeamMember"> | ||
<div class="avatar"> | ||
<img :src="'https://github.com/' + member.github + '.png'" width="120" /> | ||
</div> | ||
<div class="info"> | ||
<div class="name"> | ||
<b>{{ member.name }}</b> | ||
</div> | ||
<div class="socials"> | ||
<a :href="'https://github.com/' + member.github"> | ||
<img | ||
src="https://img.icons8.com/ios-glyphs/344/github.png" | ||
alt="GitHub" | ||
title="GitHub" | ||
width="32" | ||
/> | ||
</a> | ||
<a v-if="member.gitlab" :href="'https://gitlab.com/' + member.gitlab"> | ||
<img | ||
src="https://img.icons8.com/color/344/gitlab.png" | ||
alt="GitLab" | ||
title="GitLab" | ||
width="32" | ||
/> | ||
</a> | ||
<a | ||
v-if="member.twitter" | ||
:href="'https://twitter.com/' + member.twitter" | ||
> | ||
<img | ||
src="https://img.icons8.com/color/344/twitter.png" | ||
alt="Twitter" | ||
title="Twitter" | ||
width="32" | ||
/> | ||
</a> | ||
</div> | ||
<div v-if="member.roles?.length" class="roles"> | ||
<span>Roles: </span> | ||
<template v-for="(role, index) in member.roles"> | ||
<i>{{ role }}</i> | ||
<span v-if="index < member.roles.length - 1">, </span> | ||
</template> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
.TeamMember { | ||
padding: 0.5em; | ||
|
||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.TeamMember .avatar { | ||
flex: 0 0 120px; | ||
margin-right: 1em; | ||
} | ||
|
||
.TeamMember .avatar img { | ||
border-radius: 50%; | ||
} | ||
|
||
.TeamMember .roles i { | ||
white-space: nowrap; | ||
} | ||
</style> |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
<script lang="ts" setup> | ||
import membersData from './members.json'; | ||
import TeamMember from './TeamMember.vue'; | ||
</script> | ||
|
||
<template> | ||
<div class="TeamPage"> | ||
<div class="core"> | ||
<h2>Core Team</h2> | ||
<div class="members"> | ||
<TeamMember | ||
v-for="member in membersData.core" | ||
:key="member.name" | ||
:member="member" | ||
/> | ||
</div> | ||
</div> | ||
|
||
<div class="contributors"> | ||
<h2>Contributors</h2> | ||
<div class="members"> | ||
<TeamMember | ||
v-for="member in membersData.contributors" | ||
:key="member.name" | ||
:member="member" | ||
/> | ||
</div> | ||
</div> | ||
|
||
<div class="previous"> | ||
<h2>Honorable previous members</h2> | ||
<div class="members"> | ||
<TeamMember | ||
v-for="member in membersData.previous" | ||
:key="member.name" | ||
:member="member" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
.TeamPage .members { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
width: 100%; | ||
} | ||
|
||
.TeamPage .members .TeamMember { | ||
width: 50%; | ||
} | ||
|
||
@media (max-width: 120rem) { | ||
.TeamPage .members .TeamMember { | ||
width: 100%; | ||
} | ||
} | ||
</style> |
This file contains hidden or 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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
{ | ||
"core": [ | ||
{ | ||
"name": "Christopher Quadflieg", | ||
"github": "Shinigami92", | ||
"twitter": "Shini_92", | ||
"roles": ["Code Maintainer"] | ||
}, | ||
{ | ||
"name": "Damien Retzinger", | ||
"github": "damienwebdev", | ||
"twitter": "damienwebdev", | ||
"roles": ["Advisor"] | ||
}, | ||
{ | ||
"name": "Daniel Bannert", | ||
"github": "prisis", | ||
"twitter": "_prisis_", | ||
"roles": ["Organization Owner"] | ||
}, | ||
{ | ||
"name": "Daniel Theuke", | ||
"github": "ST-DDT", | ||
"roles": ["Code Maintainer", "Docs Automation"] | ||
Shinigami92 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}, | ||
{ | ||
"name": "Erica Clark", | ||
"github": "clarkerican", | ||
"twitter": "clarkerican", | ||
"roles": [] | ||
Shinigami92 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}, | ||
{ | ||
"name": "griest", | ||
"github": "griest024", | ||
"gitlab": "griest", | ||
"roles": ["Code Reviewer"] | ||
}, | ||
{ | ||
"name": "Jessica Sachs", | ||
"github": "JessicaSachs", | ||
"twitter": "_JessicaSachs", | ||
"roles": ["Press Officer"] | ||
} | ||
], | ||
"contributors": [ | ||
{ | ||
"name": "Eric Cheng", | ||
"github": "import-brain", | ||
"roles": ["Triage", "Contributor"] | ||
}, | ||
{ | ||
"name": "Leyla Jähnig", | ||
"github": "xDivisionByZerox", | ||
"roles": ["Contributor"] | ||
}, | ||
{ | ||
"name": "Piotr Kuczynski", | ||
"github": "pkuczynski", | ||
"twitter": "PiotrKuczynski", | ||
"roles": ["Contributor"] | ||
} | ||
], | ||
"previous": [ | ||
{ | ||
"name": "Mateus Dadalto", | ||
"github": "MateusDadalto", | ||
"twitter": "MateusD", | ||
"roles": [] | ||
}, | ||
{ | ||
"name": "Mo Mahallawy", | ||
"github": "mmahalwy", | ||
"twitter": "mmahalwy", | ||
"roles": [] | ||
} | ||
] | ||
} |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.