-
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.
Merge pull request #28 from born2scan/new-about-events
New Events page & About page members udpate
- Loading branch information
Showing
11 changed files
with
474 additions
and
81 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,84 @@ | ||
founders: | ||
- name: Lorenzo Coppi | ||
tag: beryxz | ||
phrase: 'Pwning things for fun and profit' | ||
skillset: | ||
- web | ||
links: | ||
- icon: 'github' | ||
url: 'https://github.com/beryxz' | ||
- name: Niccolò Maggioni | ||
tag: synack | ||
phrase: 'Oh, good. My slow-clap processor made it into this thing' | ||
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: 'Pwning my own bugs' | ||
skillset: | ||
- web | ||
links: | ||
- icon: 'github' | ||
url: 'https://github.com/Virgula0' | ||
- name: Cosimo Giraldi | ||
tag: cocsx | ||
phrase: | ||
skillset: | ||
- binary | ||
links: | ||
- | ||
- name: Giacomo | ||
tag: mashtrishke | ||
phrase: | ||
skillset: | ||
- binary | ||
links: | ||
- | ||
- name: Gianmarco Pastore | ||
tag: GB1 | ||
phrase: 'Just hanging around' | ||
skillset: | ||
- binary | ||
- crypto | ||
links: | ||
- icon: 'github' | ||
url: 'https://github.com/Giamm9998' | ||
- name: Gioele Dimilta | ||
tag: lonixon | ||
phrase: | ||
skillset: | ||
- web | ||
links: | ||
- icon: 'github' | ||
url: 'https://github.com/pklone' | ||
- name: Romeo Biancalani | ||
tag: Rom7x | ||
phrase: 'HACKED!' | ||
skillset: | ||
- web | ||
links: | ||
- icon: 'github' | ||
url: 'https://github.com/RomeoBiancalani' |
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
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.