Machine and Biological Vision • Computational Neuroscience • AI • NeuroAI • XAI
Brown University
Providence, RI 02912
Lab website
Lab github
Brown profile
CV
Google Search Console shows pages as “Crawled - currently not indexed”, meaning Google successfully crawled the pages but chose not to index them. This typically happens when:
_config.yml:
description: [] (empty array)_posts/)File: _config.yml
Before:
description: []
After:
description: "Thomas Serre is the Thomas J. Watson, Sr. Professor of Science at Brown University. Research in computational neuroscience, AI, brain-inspired vision models, visual perception, and explainable AI."
Impact: Jekyll SEO plugin now generates proper meta descriptions for all pages.
File: _layouts/default.html
Added:
<link rel="canonical" href="https://thomas-serre.com/INDEXING_FIX.html">
Impact: Every page now has a canonical URL telling Google which version to index.
File: sitemap.xml
Before: Only homepage
After: Includes:
_posts/Impact: Google can discover all pages and understand site structure.
The sitemap is a Jekyll template that automatically:
_site, _posts, 404.html, etc.)Every page now includes:
<link rel="canonical" href="https://tserre.github.io/page-url">
This tells Google:
Jekyll SEO plugin (`
`) now generates proper descriptions because:
_config.ymlhttps://tserre.github.io/sitemap.xml_config.yml - Added site description_layouts/default.html - Added canonical URLsitemap.xml - Complete sitemap with all pagesChanges were committed to dev branch. If GitHub Pages deploys from main, you may need to merge:
git checkout main
git merge dev
git push origin main
The site uses Jekyll SEO plugin (`
`) which automatically generates:
With the fixed description in _config.yml, all of these will now work properly.
✅ Fixed: Empty site description
✅ Fixed: Missing canonical URLs
✅ Fixed: Incomplete sitemap
✅ Deployed: Changes pushed to GitHub
The “Crawled - currently not indexed” issue should resolve as Google recrawls pages with proper meta descriptions, canonical URLs, and a complete sitemap.