├── requirements.txt ├── _config.yml ├── assets ├── css │ └── styles.scss ├── favicon.png ├── preview.png └── js │ └── script.js ├── .gitattributes ├── Gemfile ├── start.bat ├── .gitignore ├── run-repomix.bat ├── _layouts └── default.html ├── _includes └── footer.html ├── LICENSE ├── _data ├── links.yml ├── timeline.md └── timeline.yml ├── feed.xml ├── Gemfile.lock ├── .github └── workflows │ └── deploy.yml ├── _sass ├── _variables.scss └── _layout.scss ├── index.md ├── README.md ├── notes.md └── scripts └── convert_timeline_events.py /requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | url: "https://nhlocal.github.io" 2 | baseurl: "/AiTimeline" -------------------------------------------------------------------------------- /assets/css/styles.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | @use "variables"; 4 | @use "layout"; 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHLOCAL/AiTimeline/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NHLOCAL/AiTimeline/HEAD/assets/preview.png -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | gem "jekyll" 3 | gem "csv" 4 | gem "logger" 5 | gem "base64" -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- 1 | python scripts/convert_timeline_events.py _data/timeline.md 2 | 3 | bundle exec jekyll serve -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-cache 4 | .jekyll-metadata 5 | vendor 6 | repomix-output.xml 7 | repomix-output.md 8 | -------------------------------------------------------------------------------- /run-repomix.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | npx repomix --style markdown --remove-comments -i "scripts/**,notes.md,**/timeline.md" 4 | 5 | pause -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 |