Personal academic portfolio and research showcase for Kabir Potdar.
- Create the repo on GitHub: name it exactly
Kabir08.github.io - Clone it locally, then copy all these files into it
- In repo Settings → Pages → Source: set to
mainbranch // (root) - Your site will be live at https://kabir08.github.io in ~2 minutes
Open index.md and find the block starting with <!-- ── PUBLICATION 1. Fill in:
pub-title— your paper titlepub-authors— author list (your name is already bolded)pub-venue— conference, workshop, or journal namepub-badgeclass — change topub-badge--conferenceorpub-badge--workshopif neededpub-abstract— one or two sentencespub-linkshrefattributes — arXiv URL, PDF, code repo
To add a second paper, duplicate the entire <article class="pub-card"> block.
Open index.md and find <!-- ── PROJECT CARD. Fill in:
<h3>— project name<p>— description (2–3 sentences)project-tag— category label (e.g.LLM Efficiency,RAG,Kaggle)- GitHub link
href project-techspans — tech stack tags
To add more projects, duplicate any project card block.
Edit _config.yml for name, email, social handles.
kabir08.github.io/
├── _config.yml ← site metadata & social links
├── index.md ← ALL main page content (edit this!)
├── Gemfile
├── _layouts/
│ └── default.html ← HTML shell (rarely needs editing)
├── _includes/
│ ├── nav.html
│ ├── footer.html
│ └── icons/ ← SVG icons
└── assets/
├── css/main.css ← all styles
└── js/main.js ← scroll & nav behaviour
gem install bundler
bundle install
bundle exec jekyll serve
# → open http://localhost:4000