├── .gitignore ├── .htaccess ├── .htaccess.nginx ├── LICENSE ├── README.md ├── adventcalendar-day.jpg ├── adventcalendar.jpg ├── assets ├── about.html ├── css │ ├── adventcalendar.css │ └── bootstrap.min.css ├── favicon.ico ├── favicon.png ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── 404.png │ ├── tree_bark.png │ └── wave_grid.png └── js │ ├── adventcalendar.js │ ├── bootstrap.min.js │ └── jquery.min.js ├── index.php └── private ├── .htaccess ├── .htaccess.nginx ├── calendar.example.json └── settings.example.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/.htaccess -------------------------------------------------------------------------------- /.htaccess.nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/.htaccess.nginx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/README.md -------------------------------------------------------------------------------- /adventcalendar-day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/adventcalendar-day.jpg -------------------------------------------------------------------------------- /adventcalendar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/adventcalendar.jpg -------------------------------------------------------------------------------- /assets/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/about.html -------------------------------------------------------------------------------- /assets/css/adventcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/css/adventcalendar.css -------------------------------------------------------------------------------- /assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/img/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/img/404.png -------------------------------------------------------------------------------- /assets/img/tree_bark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/img/tree_bark.png -------------------------------------------------------------------------------- /assets/img/wave_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/img/wave_grid.png -------------------------------------------------------------------------------- /assets/js/adventcalendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/js/adventcalendar.js -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/assets/js/jquery.min.js -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/index.php -------------------------------------------------------------------------------- /private/.htaccess: -------------------------------------------------------------------------------- 1 | Require all denied -------------------------------------------------------------------------------- /private/.htaccess.nginx: -------------------------------------------------------------------------------- 1 | location /private { 2 | deny all; 3 | } -------------------------------------------------------------------------------- /private/calendar.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/private/calendar.example.json -------------------------------------------------------------------------------- /private/settings.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Devenet/AdventCalendar/HEAD/private/settings.example.json --------------------------------------------------------------------------------