gitextract_c93td2o_/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── bug-report.yml │ ├── dependabot.yml │ └── workflows/ │ ├── benchmark.yml │ ├── docs.yml │ ├── full-site-tests.yml │ ├── release.yml │ ├── test.yml │ └── welcome.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CITATION.cff ├── LICENSE ├── Makefile ├── README.md ├── aurora/ │ ├── __init__.py │ ├── cli.py │ ├── date_helpers.py │ ├── graph.py │ └── templates/ │ └── index.html ├── docs/ │ ├── assets/ │ │ ├── prism.css │ │ └── prism.js │ ├── config.py │ ├── highlighting.py │ ├── pages/ │ │ ├── _layouts/ │ │ │ └── default.html │ │ └── templates/ │ │ ├── 404.html │ │ ├── archives.md │ │ ├── blog.html │ │ ├── build-methods.md │ │ ├── collections-from-data.html │ │ ├── collections.md │ │ ├── configuration.html │ │ ├── dates.html │ │ ├── design.html │ │ ├── hooks.html │ │ ├── index.html │ │ ├── pagination.md │ │ ├── performance.html │ │ ├── permalinks.html │ │ ├── robots.html │ │ ├── sitemap.html │ │ ├── start.html │ │ ├── state.html │ │ ├── structure.html │ │ ├── templates.md │ │ ├── templating.md │ │ └── users.html │ └── state.json ├── requirements.txt ├── setup.py └── tests/ ├── fixtures/ │ ├── about.html │ ├── about_ISO-8859-1.html │ ├── about_UTF-16-BE.html │ ├── about_Windows-1252.html │ ├── book.html │ ├── book_list.html │ ├── category_archive.html │ ├── collection_pagination.html │ ├── date_year.html │ ├── date_year_month.html │ ├── date_year_month_day.html │ ├── index.html │ ├── new_site_config.py │ ├── post.html │ ├── review.html │ ├── robots.txt │ ├── styles.css │ └── tag_archive.html ├── library/ │ ├── assets/ │ │ ├── meta/ │ │ │ └── robots.txt │ │ └── styles.css │ ├── config.py │ ├── hooks.py │ ├── pages/ │ │ ├── _data/ │ │ │ ├── books.json │ │ │ └── reviews.csv │ │ ├── _layouts/ │ │ │ ├── book-template.html │ │ │ ├── category.html │ │ │ ├── date.html │ │ │ ├── default.html │ │ │ ├── post.html │ │ │ ├── reader-review.html │ │ │ ├── rooms.html │ │ │ └── tag.html │ │ ├── posts/ │ │ │ └── 2024-01-01-first-post.md │ │ ├── rooms/ │ │ │ ├── quiet-corner.html │ │ │ └── study-hall.html │ │ └── templates/ │ │ ├── about.html │ │ ├── about_ISO-8859-1.html │ │ ├── about_UTF-16-BE.html │ │ ├── about_Windows-1252.html │ │ ├── book_list.html │ │ └── index.html │ └── state.json └── state.py