Official website for the AgentSearch Workshop: The First Workshop on Indexing, Retrieval, and Ranking of AI Agents at SIGIR 2026 in Melbourne, Australia.
π Live Site: https://agent-search.github.github.io/agentsearch-sigir26/
This is a single-page website built with pure HTML, CSS, and vanilla JavaScript. It requires no build tools or external dependencies (except for optional Google Fonts) and is designed to be deployed directly on GitHub Pages.
- β Responsive design (mobile, tablet, desktop)
- β Sticky navigation with smooth scrolling
- β Scrollspy (highlights active section in navigation)
- β Mobile hamburger menu
- β Back-to-top button
- β Accessible (ARIA labels, semantic HTML, keyboard navigation)
- β SEO optimized (meta tags, Open Graph)
- β Fast loading (no heavy dependencies)
-
Fork or clone this repository
git clone https://github.com/YOUR-USERNAME/agentsearch-sigir26.git cd agentsearch-sigir26 -
Push to GitHub
git add . git commit -m "Initial commit" git push origin main
-
Enable GitHub Pages
- Go to your repository on GitHub
- Click Settings β Pages
- Under "Source", select main branch
- Click Save
- Your site will be live at:
https://YOUR-USERNAME.github.io/agentsearch-sigir26/
-
Wait a few minutes for GitHub to build and deploy your site
To test the site locally, you can use any simple HTTP server:
Option 1: Python
# Python 3
python -m http.server 8000
# Python 2
python -m SimpleHTTPServer 8000Option 2: Node.js
npx serveOption 3: VS Code
- Install the "Live Server" extension
- Right-click
index.htmlβ "Open with Live Server"
Then open your browser to http://localhost:8000 (or the port shown in your terminal).
agentsearch-sigir26/
βββ index.html # Main HTML file
βββ assets/
β βββ css/
β β βββ style.css # All styles (CSS variables, responsive design)
β βββ js/
β β βββ main.js # JavaScript (navigation, scrollspy, mobile menu)
β βββ img/ # Images folder (add your images here)
β βββ .gitkeep # Placeholder
βββ README.md # This file
βββ LICENSE # License file
Open index.html and edit the content directly. Here are the key sections:
<!-- Find this section around line 70 -->
<h1 class="hero-title">AgentSearch</h1>
<h2 class="hero-subtitle">The First Workshop on...</h2>
<p class="hero-conference">SIGIR 2026 Β· Melbourne | Naarm, Australia Β· July 2026</p><!-- Find around line 88 -->
<section id="about" class="section">
<p>Your about text here...</p>
</section><!-- Find around line 271 -->
<ul class="dates-list">
<li><strong>Paper Submission Deadline:</strong> April 15, 2026 (AoE)</li>
<!-- Update dates as needed -->
</ul><!-- Find around line 216 -->
<div class="speaker-card">
<h3>Speaker Name</h3>
<p class="speaker-affiliation">University Name</p>
<p class="speaker-bio">Bio text...</p>
</div><!-- Find around line 361 -->
<div class="organizer-card">
<h3>Organizer Name</h3>
<p class="organizer-affiliation">Affiliation</p>
<p class="organizer-bio">Bio text...</p>
</div>Submission Links
<!-- Update the submission URL around line 283 -->
<a href="https://easychair.org/conferences/?conf=agentsearch2026"
class="btn btn-primary">Submit Your Paper</a>Challenge Links
<!-- Update the challenge URL around line 346 -->
<a href="https://github.com/agentsearch/challenge-2026"
class="btn btn-primary">Join the Challenge</a>Contact Email
<!-- Update around line 435 -->
<a href="mailto:agentsearch-workshop@googlegroups.com">
agentsearch-workshop@googlegroups.com
</a>All visual design is controlled by CSS variables in assets/css/style.css:
/* Find around line 5 */
:root {
/* Change the primary color (buttons, links, accents) */
--color-primary: #2563eb;
/* Change text colors */
--color-text: #1e293b;
--color-text-light: #64748b;
/* Change background colors */
--color-background: #ffffff;
--color-background-gray: #f8fafc;
/* Adjust spacing */
--spacing-md: 2rem;
--spacing-lg: 3rem;
}- Add your images to the
assets/img/folder - Reference them in the HTML:
<!-- Add a logo in the navigation -->
<div class="nav-brand">
<img src="assets/img/logo.png" alt="AgentSearch Logo" height="40">
<a href="#home">AgentSearch</a>
</div>
<!-- Add speaker photos -->
<div class="speaker-card">
<img src="assets/img/speakers/mark-sanderson.jpg"
alt="Mark Sanderson"
class="speaker-photo">
<h3>Mark Sanderson</h3>
...
</div><!-- Find around line 6 in index.html -->
<meta name="description" content="Your updated description">
<meta property="og:url" content="https://YOUR-USERNAME.github.io/agentsearch-sigir26/">
<meta property="og:image" content="https://YOUR-USERNAME.github.io/agentsearch-sigir26/assets/img/logo.png">Replace the Google Fonts link in index.html:
<!-- Around line 23 -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">Update the CSS variable:
:root {
--font-family: 'Roboto', sans-serif;
}Update both CSS and JavaScript:
/* In style.css around line 27 */
--nav-height: 70px;/* In main.js around line 10 */
const NAV_HEIGHT = 70;- Add the HTML section:
<section id="new-section" class="section">
<div class="container">
<h2 class="section-title">New Section</h2>
<div class="section-content">
<p>Your content here...</p>
</div>
</div>
</section>- Add navigation link:
<!-- In the nav menu -->
<li><a href="#new-section" class="nav-link">New Section</a></li>The scrollspy will automatically detect and highlight the new section!
- Ensure images are in the
assets/img/folder - Check that file paths are correct (case-sensitive)
- Verify images are pushed to GitHub
- Check that section IDs match navigation hrefs exactly
- Ensure JavaScript is loading (check browser console)
- Verify
main.jsis loading correctly - Check browser console for JavaScript errors
- Wait 5-10 minutes after pushing changes
- Clear your browser cache
- Check GitHub Actions tab for build status
- Chrome/Edge (latest)
- Firefox (latest)
- Safari (latest)
- Mobile browsers (iOS Safari, Chrome Android)
This project is licensed under the MIT License - see the LICENSE file for details.
This is a workshop website, but if you find bugs or have suggestions:
- Fork the repository
- Create a feature branch
- Commit your changes
- Push to the branch
- Open a Pull Request
For questions about the workshop content, contact: agentsearch-workshop@googlegroups.com
For technical issues with the website, open an issue on GitHub.
Last Updated: February 14, 2026
Built with β€οΈ for SIGIR 2026 Official website for the AgentSearch Workshop at SIGIR 2026: Indexing, Retrieval, and Ranking of AI Agents.