-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update wor, improve member layout in team page
- Loading branch information
Showing
12 changed files
with
63 additions
and
80 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,4 +1,4 @@ | ||
name = "donnoh" | ||
nickname = "donnoh" | ||
|
||
website = "https://lucadonnoh.github.io/" | ||
skills = [ | ||
|
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name = "Kabir" | ||
nickname = "amnesy" | ||
role = "Member" | ||
email = "[email protected]" | ||
skills = ["Web", "Osint", "Network Analysis", "Insulting PHP"] | ||
active = false | ||
years = [2023] |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name = "Karina Chichifoi" | ||
nickname = "trykatchup" | ||
role = "Member and Co-Lead" | ||
email = "[email protected]" | ||
website = "https://trykatchup.github.io/" | ||
years = [2_023] | ||
active = true | ||
skills = ["OSINT", "System Administration", "Network Analysis"] |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name = "Lorenzo Guerra" | ||
nickname = "wor" | ||
|
||
role = "Member" | ||
email = "[email protected]" | ||
website = "https://lorenzo9uerra.github.io" | ||
|
||
skills = ["PWN", "Crypto", "System Administration"] | ||
years = [2023] | ||
|
||
active = false |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
name = "Patrick Papa" | ||
nickname = "pouup" | ||
photo = "unknown.png" | ||
role = "Member" | ||
email = "[email protected]" | ||
years = [2023] | ||
skills = ["Crypto", "PWN", "Crying without tears /s"] | ||
active = false |
This file was deleted.
Oops, something went wrong.
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,10 +1,7 @@ | ||
name = "Gianmaria Rovelli (xgampx)" | ||
name = "Gianmaria Rovelli" | ||
nickname = "xgampx" | ||
role = "Member" | ||
website = "https://giammirove.github.io" | ||
skills = [ | ||
"Web", | ||
"Reverse Engineering", | ||
"Low Level Programming", | ||
] | ||
skills = ["Web", "Reverse Engineering", "Low Level Programming"] | ||
|
||
years = [2023, 2022] |
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
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,22 +1,23 @@ | ||
<h2>Membri attivi</h2> | ||
<div> | ||
<h2>Membri attivi</h2> | ||
|
||
<div style="display: grid; grid-template-columns: 1fr 1fr;"> | ||
{{ range $.Site.Data.team }} | ||
<div style="display: grid; grid-template-columns: 1fr 1fr;"> | ||
{{ range $.Site.Data.team }} | ||
{{ if .active }} | ||
{{ partial "member.html" . }} | ||
{{ partial "member.html" . }} | ||
{{ end }} | ||
{{ end }} | ||
{{ end }} | ||
</div> | ||
</div> | ||
|
||
<details style="margin-top: 2rem"> | ||
<summary style="list-style: none;"> | ||
<h2 style="display: inline; text-decoration: underline; cursor: pointer;">Membri inattivi</h2> | ||
</summary> | ||
<div style="margin-top: 2rem"> | ||
<h2>Membri inattivi</h2> | ||
|
||
<div style="display: grid; grid-template-columns: 1fr 1fr;"> | ||
{{ range $.Site.Data.team }} | ||
{{ if not .active }} | ||
{{ partial "member.html" . }} | ||
{{ end }} | ||
{{ if not .active }} | ||
{{ partial "member.html" . }} | ||
{{ end }} | ||
{{ end }} | ||
</div> | ||
</details> | ||
</div> |