-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Events page for DanteCTF; About page members
- Updated About page members style; - Added residents to about page; - Events page; - DanteCTF event description;
- Loading branch information
Showing
8 changed files
with
463 additions
and
75 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 |
---|---|---|
@@ -0,0 +1,80 @@ | ||
founders: | ||
- name: Lorenzo Coppi | ||
tag: beryxz | ||
phrase: Never gonna give you up | ||
skillset: | ||
- web | ||
links: | ||
- icon: 'github' | ||
url: 'https://github.com/beryxz' | ||
- name: Niccolò Maggioni | ||
tag: synack | ||
phrase: | ||
skillset: | ||
- network | ||
- hardware | ||
links: | ||
- icon: 'link-variant' | ||
url: 'https://nmaggioni.xyz/' | ||
- icon: 'github' | ||
url: 'https://github.com/nmaggioni' | ||
- name: Ion Farima | ||
tag: ionno | ||
phrase: | ||
skillset: | ||
- web | ||
links: | ||
- icon: 'github' | ||
url: 'https://github.com/ionfarima' | ||
- name: Letterio Galletta | ||
tag: lillo | ||
phrase: | ||
skillset: | ||
- binary | ||
- crypto | ||
links: | ||
- | ||
residents: | ||
- name: Angelo Rosa | ||
tag: Virgula | ||
phrase: | ||
skillset: | ||
- web | ||
links: | ||
- | ||
- name: Cosimo Giraldi | ||
tag: cocsx | ||
phrase: | ||
skillset: | ||
- | ||
links: | ||
- | ||
- name: Giacomo | ||
tag: mashtrishke | ||
phrase: | ||
skillset: | ||
- | ||
links: | ||
- | ||
- name: Gianmarco Pastore | ||
tag: GB1 | ||
phrase: | ||
skillset: | ||
- binary | ||
- crypto | ||
links: | ||
- | ||
- name: Gioele Dimilta | ||
tag: lonixon | ||
phrase: | ||
skillset: | ||
- web | ||
links: | ||
- | ||
- name: Romeo Biancalani | ||
tag: Rom7x | ||
phrase: | ||
skillset: | ||
- web | ||
links: | ||
- |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<div class="user-card"> | ||
<span class="user-tag">{{ include.tag }}</span> | ||
<span class="user-name">{{ include.name }}</span> | ||
<span class="user-skillset"> | ||
{%- for skill in include.skillset -%} | ||
{%- case skill -%} | ||
{%- when 'web' -%} | ||
<span class="mdi mdi-cookie"><span class="tooltip">Web</span></span> | ||
{%- when 'binary' -%} | ||
<span class="mdi mdi-matrix"><span class="tooltip">Binary</span></span> | ||
{%- when 'crypto' -%} | ||
<span class="mdi mdi-key-chain"><span class="tooltip">Crypto</span></span> | ||
{%- when 'hardware' -%} | ||
<span class="mdi mdi-chip"><span class="tooltip">Hardware</span></span> | ||
{%- when 'network' -%} | ||
<span class="mdi mdi-server-network"><span class="tooltip">Network</span></span> | ||
{%- endcase -%} | ||
{%- endfor -%} | ||
</span> | ||
<span class="user-phrase">{{ include.phrase }}</span> | ||
<span class="user-links"> | ||
{%- for link in include.links -%} | ||
<a href="{{ link.url }}" target="_blank"><span class="mdi mdi-{{ link.icon }}"></span></a> | ||
{%- endfor -%} | ||
</span> | ||
</div> |
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,12 @@ | ||
<div class="users-container"> | ||
|
||
{% assign users = include.users | sort: 'name' %} | ||
{%- for user in users -%} | ||
{%- include mixins/user_card.html tag=user.tag | ||
name=user.name | ||
phrase=user.phrase | ||
skillset=user.skillset | ||
links=user.links -%} | ||
{%- endfor -%} | ||
|
||
</div> |
Oops, something went wrong.