π Quick Start Guide
Preview Your New Website
1. Start Jekyll Server
cd /Users/dmitry/Projects/style-transfer-lab.github.io
bundle exec jekyll serve
2. Open in Browser
Visit: http://localhost:4000
π― Immediate To-Do List
Priority 1: Add Paper Links (5 minutes per paper)
Open each paper file in _papers/ and uncomment the link lines:
# Change this:
# arxiv: https://arxiv.org/abs/...
# To this:
arxiv: https://arxiv.org/abs/2501.12345
Files to update:
_papers/any-to-cloth-virtual-try-on.md_papers/color-conditional-generation.md_papers/color-transfer-modflows.md_papers/fbm-generative-inpainting.md_papers/hessian-geometry-latent-space.md
Priority 2: Update Team Info (10 minutes)
Edit about.md:
- Replace placeholder bios with real ones: ```markdown
Your actual bio here (2-3 sentences about your research)
2. Add your links:
```html
<a href="https://scholar.google.com/citations?user=YOUR_ID" class="team-member-link" target="_blank">π Scholar</a>
<a href="https://github.com/yourusername" class="team-member-link" target="_blank">π» GitHub</a>
Priority 3: Add Contact Email (1 minute)
In about.md, find βGet in Touchβ section and add:
<p style="font-size: 1.1em; margin: 10px 0;">
π§ Email: <a href="mailto:youremail@example.com">youremail@example.com</a>
</p>
π¨ Whatβs New
Pages You Should Check:
- Homepage (
/) - New hero section and featured papers - Research (
/papers/) - Filterable grid with search - Themes (
/research-themes/) - Papers organized by topic - Team (
/about/) - Professional team showcase - Individual Papers - Enhanced layout with resources
Try These Features:
- π Search papers by keyword
- π·οΈ Filter by year or venue type
- π Copy BibTeX citations (one-click)
- π± Test on mobile (fully responsive)
- β¬οΈ Back-to-top button (appears when scrolling)
- π¨ Smooth animations and transitions
πΈ Optional: Add Team Photos
- Create directory:
mkdir -p assets/images/team - Add photos (recommended: 300x300px, square):
# Copy your photos cp ~/photo.jpg assets/images/team/alexander.jpg - Update
about.md:<!-- Uncomment and update: --> <img src="/assets/images/team/alexander.jpg" alt="Alexander Lobashev" class="team-member-photo">
β Quick Checklist
Before going live:
- Add arXiv/OpenReview links to all papers
- Add GitHub repository links
- Update team bios and research interests
- Add team member links (Scholar, GitHub)
- Add contact email in about page
- Test on Chrome, Firefox, Safari
- Test on mobile device
- Check all links work
- Proofread all text content
π¨ Common Issues
Problem: CSS not loading
Solution: Hard refresh (Cmd+Shift+R on Mac, Ctrl+Shift+R on Windows)
Problem: Papers not showing on homepage
Solution: Check that featured: true is set in paper frontmatter
Problem: Search/filter not working Solution: Check browser console (F12) for JavaScript errors
Problem: Layout broken on mobile Solution: Clear cache, check viewport meta tag exists
π Making Changes
Update Site Description
Edit _config.yml - line 27:
description: 'Your new description here'
Change Colors
Edit assets/styles/custom.css - lines 10-15:
--primary-blue: #2196F3; /* Your color */
--accent-purple: #9C27B0; /* Your color */
Add New Paper
- Create file:
_papers/new-paper.md - Copy frontmatter from existing paper
- Update all fields
- Add image to
assets/images/
π Youβre Ready!
Your website has been completely redesigned with:
- Modern, professional appearance
- Full mobile responsiveness
- Search and filtering
- Interactive features
- Team showcase
- Research themes organization
Next step: Run bundle exec jekyll serve and preview at http://localhost:4000
For detailed information, see IMPLEMENTATION_GUIDE.md.
Need help? Check the comments in the code files - they have helpful hints!
Good luck with your research! π¬β¨