Skip to content

Instantly share code, notes, and snippets.

View LootzCollects's full-sized avatar

LootzCollects

  • Joined Oct 19, 2025
View GitHub Profile
@LootzCollects
LootzCollects / inkwell_logic.js
Created October 28, 2025 19:24
The Logic file for the Lootz Collectibles Inkwell Project
const container = document.getElementById('signatures-display');
const searchBar = document.getElementById('search-bar');
// Sort the list alphabetically by name upon load
comicPros.sort((a, b) => a.name.localeCompare(b.name));
/**
* Creates a single HTML element for a signature item.
* @param {object} pro - The professional's data object.
* @returns {HTMLElement} - The fully constructed div element.
@LootzCollects
LootzCollects / inkwell_data.js
Created October 28, 2025 19:22
List of Comic Book Professionals for the Lootz Collectibles Inkwell project
const comicPros = [
{ name: "Adam Kubert", imageUrl: "https://i.imgur.com/cuO3qfP.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Adam_Kubert.html" },
{ name: "Al Milgrom", imageUrl: "https://i.imgur.com/Iqa5kxW.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Al_Milgrom.html" },
{ name: "Alex Sinclair", imageUrl: "https://i.imgur.com/MFRnx0y.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Alex_Sinclair.html" },
{ name: "Amanda Conner 1", imageUrl: "https://i.imgur.com/yEmhdDf.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Amanda_Conner.html" },
{ name: "Amanda Conner 2", imageUrl: "https://i.imgur.com/VuBJFAv.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Amanda_Conner.html" },
{ name: "Andy Kubert", imageUrl: "https://i.imgur.com/vtxb8H8.jpeg", infoUrl: "https://lootzcollects.github.io/Inkwell_Profiles/Andy_Kubert.html" },
{ name: "Angel Medina", imageUrl: "https://i.imgur.com/DGybX3c.jpeg"