--- tags: portfolio date: "2024-04-09" author: me language: en --- # How to improve this portfolio referencing. ## Sphinx sitemap Add ```sphinx-sitemap``` to ```requirements.txt``` Edit ```conf.py``` ```python # -- Referencing -- extensions += ['sphinx_sitemap'] html_baseurl = 'https://vferat.github.io' html_extra_path += ["extra"] ``` ## Add meta tags ``` --- html_meta: "description lang=en": "Welcome to Victor FĂ©rat's personal website. Explore my work, interests as well as programming and neuroimaging tutorials." "keywords": "Neuroimaging, Portfolio, eeg, fmri, meg, dev" "property=og:locale": "en_US" --- ``` ## References - [Readthedocs seo guide](https://docs.readthedocs.io/en/stable/guides/technical-docs-seo-guide.html) - [documatt "How to add a sitemap to the Sphinx project" tutorial](https://documatt.com/blog/20/sphinx-sitemap/)