├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── .gitignore ├── Gemfile ├── LICENSE ├── README.md ├── _announcements ├── week-0.md └── week-1.md ├── _config.yml ├── _includes └── minutes.liquid ├── _layouts ├── announcement.html ├── module.html ├── schedule.html └── staffer.html ├── _modules ├── week-01.md └── week-02.md ├── _sass └── custom │ ├── announcement.scss │ ├── card.scss │ ├── custom.scss │ ├── module.scss │ ├── schedule.scss │ └── staffer.scss ├── _schedules └── weekly.md ├── _staffers ├── evil-kevin.md ├── kevin.md ├── more-evil-kevin.md └── really-evil-kevin.md ├── about.md ├── announcements.md ├── assets └── images │ └── kevin.jpg ├── calendar.md ├── schedule.md └── staff.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/README.md -------------------------------------------------------------------------------- /_announcements/week-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_announcements/week-0.md -------------------------------------------------------------------------------- /_announcements/week-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_announcements/week-1.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/minutes.liquid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_includes/minutes.liquid -------------------------------------------------------------------------------- /_layouts/announcement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_layouts/announcement.html -------------------------------------------------------------------------------- /_layouts/module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_layouts/module.html -------------------------------------------------------------------------------- /_layouts/schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_layouts/schedule.html -------------------------------------------------------------------------------- /_layouts/staffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_layouts/staffer.html -------------------------------------------------------------------------------- /_modules/week-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_modules/week-01.md -------------------------------------------------------------------------------- /_modules/week-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_modules/week-02.md -------------------------------------------------------------------------------- /_sass/custom/announcement.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_sass/custom/announcement.scss -------------------------------------------------------------------------------- /_sass/custom/card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_sass/custom/card.scss -------------------------------------------------------------------------------- /_sass/custom/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_sass/custom/custom.scss -------------------------------------------------------------------------------- /_sass/custom/module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_sass/custom/module.scss -------------------------------------------------------------------------------- /_sass/custom/schedule.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_sass/custom/schedule.scss -------------------------------------------------------------------------------- /_sass/custom/staffer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_sass/custom/staffer.scss -------------------------------------------------------------------------------- /_schedules/weekly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_schedules/weekly.md -------------------------------------------------------------------------------- /_staffers/evil-kevin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_staffers/evil-kevin.md -------------------------------------------------------------------------------- /_staffers/kevin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_staffers/kevin.md -------------------------------------------------------------------------------- /_staffers/more-evil-kevin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_staffers/more-evil-kevin.md -------------------------------------------------------------------------------- /_staffers/really-evil-kevin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/_staffers/really-evil-kevin.md -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/about.md -------------------------------------------------------------------------------- /announcements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/announcements.md -------------------------------------------------------------------------------- /assets/images/kevin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/assets/images/kevin.jpg -------------------------------------------------------------------------------- /calendar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/calendar.md -------------------------------------------------------------------------------- /schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/schedule.md -------------------------------------------------------------------------------- /staff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlin1/just-the-class/HEAD/staff.md --------------------------------------------------------------------------------