Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions src/config/contributors.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"slug": "mattaereal",
"name": "matta",
"role": "lead",
"avatar": "https://github.com/mattaereal.png",
"avatar": "https://avatars.githubusercontent.com/mattaereal",
"github": "https://github.com/mattaereal",
"twitter": "https://twitter.com/mattaereal",
"website": "https://theredguild.org",
Expand All @@ -15,7 +15,7 @@
"slug": "fredriksvantes",
"name": "Fredrik Svantes",
"role": "core",
"avatar": "https://github.com/fredriksvantes.png",
"avatar": "https://avatars.githubusercontent.com/fredriksvantes",
"github": "https://github.com/fredriksvantes",
"twitter": "https://twitter.com/fredriksvantes",
"website": "https://ethereum.org",
Expand All @@ -27,7 +27,7 @@
"slug": "zedt3ster",
"name": "zedt3ster",
"role": "core",
"avatar": "https://github.com/zedt3ster.png",
"avatar": "https://avatars.githubusercontent.com/zedt3ster",
"github": "https://github.com/zedt3ster",
"twitter": "https://twitter.com/ethzed",
"website": "https://sigmaprime.io",
Expand All @@ -50,7 +50,7 @@
"slug": "robert",
"name": "Robert MacWha",
"role": "core",
"avatar": "https://github.com/Robert-MacWha.png",
"avatar": "https://avatars.githubusercontent.com/Robert-MacWha",
"github": "https://github.com/robert-macwha",
"twitter": null,
"website": "https://robertmacwha.ca/",
Expand All @@ -62,7 +62,7 @@
"slug": "tebayoso",
"name": "tebayoso",
"role": "contributor",
"avatar": "https://github.com/tebayoso.png",
"avatar": "https://avatars.githubusercontent.com/tebayoso",
"github": "https://github.com/tebayoso",
"twitter": "https://twitter.com/tebayoso",
"company": "The Red Guild",
Expand All @@ -72,7 +72,7 @@
"slug": "engn33r",
"name": "engn33r",
"role": "contributor",
"avatar": "https://github.com/engn33r.png",
"avatar": "https://avatars.githubusercontent.com/engn33r",
"github": "https://github.com/engn33r",
"twitter": "https://twitter.com/bl4ckb1rd71",
"description": "Signing best practices"
Expand All @@ -81,7 +81,7 @@
"slug": "ghadi8",
"name": "Ghadi Mhawej",
"role": "steward",
"avatar": "https://github.com/ghadi8.png",
"avatar": "https://avatars.githubusercontent.com/ghadi8",
"github": "https://github.com/ghadi8",
"twitter": "https://twitter.com/ghadi8798",
"job_title": "Creator and maintainer of the ENS framework",
Expand All @@ -92,7 +92,7 @@
{
"slug": "patrickalphac",
"name": "Patrick Collins",
"avatar": "https://github.com/patrickalphac.png",
"avatar": "https://avatars.githubusercontent.com/patrickalphac",
"github": "https://github.com/patrickalphac",
"twitter": "https://twitter.com/patrickalphac",
"website": "https://cyfrin.io",
Expand All @@ -104,7 +104,7 @@
{
"slug": "pinalikefruit",
"name": "Piña",
"avatar": "https://github.com/pinalikefruit.png",
"avatar": "https://avatars.githubusercontent.com/pinalikefruit",
"github": "https://github.com/pinalikefruit",
"twitter": "https://x.com/pinalikefruit",
"role": "steward",
Expand All @@ -116,12 +116,12 @@
"slug": "dickson",
"name": "Dickson Wu",
"role": "contributor",
"avatar": "https://github.com/DicksonWu654.png",
"avatar": "https://avatars.githubusercontent.com/DicksonWu654",
"github": "https://github.com/DicksonWu654",
"twitter": "https://x.com/DicksonWuML",
"website": "https://skylock.xyz/",
"company": "SEAL",
"job_title": "Safe Harbor",
"description": "Safe Harbor contributor"
}
]
]
5 changes: 1 addition & 4 deletions theme/main.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
const bookmarkPrefix = "bookmarks_";
const tagPrefix = "tag_";

// TODO: Find a way to pass tags metadata into handlebars, so we can initiatize tags at build time
// TODO: Find a way to pass tags metadata into handlebars, so we can initialize tags at build time
window.addEventListener("load", () => {
updateBookmarkIcon();

window.tagsData = tagsIndex;
addBookmarkedToTags();
createSearchableTags();

// Ensure text wraps tightly around contributors boxes
ensureContributorBoxWrapping();

//* Setup event listeners for dropdowns & tags
const tagsToggle = document.getElementById('tags-toggle');
const tagsDropdown = document.getElementById('tags-dropdown');
Expand Down