My personal website https://florent.guiotte.fr
Go to file
2026-03-02 18:07:45 +01:00
_bibliography fixing about 2026-02-20 18:38:53 +01:00
_books Updated jekyll-archives-v2 (#3460) 2026-01-17 15:17:16 -03:00
_data fixing about 2026-02-20 18:38:53 +01:00
_includes WIP to fix 2026-03-02 18:07:45 +01:00
_layouts Fix #2598, shift to last_modified_at instead of last_updated. (#3493) 2026-01-31 12:38:24 -03:00
_news fixing about 2026-02-20 18:38:53 +01:00
_pages fixing about 2026-02-20 18:38:53 +01:00
_plugins Improve readme, add site-wide CSP (#3485) 2026-01-28 21:22:27 -03:00
_posts Fix #2598, shift to last_modified_at instead of last_updated. (#3493) 2026-01-31 12:38:24 -03:00
_projects WIP to fix 2026-03-02 18:07:45 +01:00
_sass Improve readme, add site-wide CSP (#3485) 2026-01-28 21:22:27 -03:00
_scripts Add GDPR-compliant cookie consent with analytics blocking (#3492) 2026-02-04 10:16:34 -03:00
_teachings Add course schedule feature to teaching page (#2258) (#3147) 2026-01-17 18:43:47 -03:00
.devcontainer fix(devcontainer): remove broken yarn apt source to fix build (#3490) 2026-01-29 11:47:54 -03:00
.gemini Fix Gemini settings 2026-02-01 14:49:08 -03:00
.github Making Gemini and Claude configuration files point to AGENTS.md (#3494) 2026-01-31 19:52:26 -03:00
assets update pp 2026-02-18 20:52:48 +01:00
bin Adapt mechanism for citiation count (#3177) 2025-11-16 22:17:17 -03:00
lighthouse_results Lighthouse-Badger[bot]: Results Added 2024-02-14 17:42:02 +00:00
readme_preview Exclude more files from site (#2257) 2024-03-07 12:06:44 -03:00
_config.yml fixing about 2026-02-20 18:38:53 +01:00
.all-contributorsrc Improve readme, add site-wide CSP (#3485) 2026-01-28 21:22:27 -03:00
.dockerignore Create .dockerignore 2023-07-11 12:43:37 +03:30
.git-blame-ignore-revs Update .git-blame-ignore-revs 2024-01-10 11:24:39 -05:00
.gitattributes fix: typo in file name gitattributes (#2972) 2025-01-26 18:38:56 -08:00
.gitignore Unify jsonresume and RenderCV CVs solutions (#3462) 2026-01-23 12:36:14 -03:00
.lycheeignore Added copilot instructions, AGENTS.md, improved README files (#3486) 2026-01-28 22:55:05 -03:00
.pre-commit-config.yaml format code with prettier.io (#2048) 2024-01-10 00:10:51 -05:00
.prettierignore Update SASS syntax in base (non-font) files (#3281) 2026-01-26 18:26:44 -03:00
.prettierrc format code with prettier.io (#2048) 2024-01-10 00:10:51 -05:00
AGENTS.md Making Gemini and Claude configuration files point to AGENTS.md (#3494) 2026-01-31 19:52:26 -03:00
ANALYTICS.md Auto update markdown TOC 2026-01-29 01:55:22 +00:00
CLAUDE.md Making Gemini and Claude configuration files point to AGENTS.md (#3494) 2026-01-31 19:52:26 -03:00
CONTRIBUTING.md Enhance documentation for GitHub Copilot agents 2026-01-31 19:56:41 -03:00
CUSTOMIZE.md Auto update markdown TOC 2026-02-04 13:16:50 +00:00
docker-compose-slim.yml Remove 'version's as it's obsolete; Update docker-compose files (#2574) 2024-07-16 22:52:06 -03:00
docker-compose.yml Updated jekyll-socials to latest version (#3464) 2026-01-19 23:10:08 -03:00
Dockerfile Updated ffi, changed base docker image, added observer and ostruct (#2931) 2024-12-30 22:12:54 -03:00
FAQ.md Auto update markdown TOC 2026-01-29 01:55:22 +00:00
Gemfile Merge remote-tracking branch 'gh/main' 2026-02-18 16:59:30 +01:00
Gemfile.lock Broken merge 2026-02-18 17:09:33 +01:00
INSTALL.md Auto update markdown TOC 2026-02-04 13:17:49 +00:00
LICENSE Bump license year to 2025 2025-01-18 22:16:45 -05:00
package-lock.json Add calendar iframe and togglAdd calendar iframe and toggle buttone button (#3144) 2026-01-17 20:36:16 -03:00
package.json Add calendar iframe and togglAdd calendar iframe and toggle buttone button (#3144) 2026-01-17 20:36:16 -03:00
purgecss.config.js Fixed dark mode not working after purgecss 2024-01-20 13:52:33 -03:00
QUICKSTART.md Improve explanation of create from this template (#3499) 2026-02-04 10:17:32 -03:00
README.md Broken merge 2026-02-18 17:09:33 +01:00
requirements.txt Unify jsonresume and RenderCV CVs solutions (#3462) 2026-01-23 12:36:14 -03:00
robots.txt Adds support for sitemap and robots.txt (#337) 2021-07-21 09:11:03 -04:00
SEO.md Auto update markdown TOC 2026-01-29 01:55:22 +00:00
TROUBLESHOOTING.md Auto update markdown TOC 2026-01-29 01:55:22 +00:00

Pages perso

Setup and develop

bundle config set path 'vendor/bundle'
bundle install
bundle exec jekyll serve --livereload

Deploy

bundle exec jekyll build
rsync -aP --delete _site/ k0v1@guiotte.fr:/home/k0v1/docker/florent/data

Bibliography

In Zotero, setup a Better BibTex postscript for arXiv papers:

if (zotero.itemType === 'preprint') {
  tex.entrytype = 'article'
  if (zotero.arXiv) {
    tex.add({ name: 'arXiv', value: zotero.arXiv.id});
    tex.add({ name: 'pdf', value: 'https://arxiv.org/pdf/' + zotero.arXiv.id});
    tex.add({ name: 'shortjournal', value: 'arXiv'});
  }
}