├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── collections ├── 404.php ├── _inc │ ├── inc-footer.php │ ├── inc-header.php │ ├── inc-sidebar.php │ └── inc-topbar.php ├── album.php ├── album_diary.php ├── archive.php ├── contact.php ├── favorites.php ├── fonts │ ├── InterVariable-Italic.woff2 │ ├── InterVariable.woff2 │ └── coll_icons.woff2 ├── functions.php ├── gallery.php ├── image.php ├── images │ ├── cursor_close.png │ ├── cursor_close.svg │ ├── cursor_close_night.svg │ ├── cursor_left.png │ ├── cursor_left.svg │ ├── cursor_left_night.svg │ ├── cursor_right.png │ ├── cursor_right.svg │ ├── cursor_right_night.svg │ ├── day.svg │ ├── down.svg │ ├── err-passwordprotected.png │ ├── err-passwordprotected.svg │ ├── err-passwordprotected_night.svg │ ├── f_add.svg │ ├── f_add_night.svg │ ├── f_rem.svg │ ├── icon-loader-2.gif │ ├── imageDefault.png │ ├── imageDefault.svg │ ├── imageDefault_night.svg │ ├── night.svg │ ├── search_dark.svg │ ├── search_light.svg │ ├── textDefault.png │ ├── textDefault.svg │ └── textDefault_night.svg ├── index.php ├── js │ ├── collection.js │ ├── shuffle.js │ └── unused.js ├── logo.png ├── news.php ├── pages.php ├── password.php ├── register.php ├── search.php ├── styles.css ├── styles.more.css ├── styles.trash.bin.css ├── theme.png ├── theme_description.php └── themeoptions.php ├── collections_00.jpg ├── collections_01.jpg ├── collections_02_sidebar.jpg └── screenshots ├── screenshots_01.jpg └── screenshots_02.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | collections/styles.navbar.submenu.css 4 | *.ai 5 | *.gz 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/README.md -------------------------------------------------------------------------------- /collections/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/404.php -------------------------------------------------------------------------------- /collections/_inc/inc-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/_inc/inc-footer.php -------------------------------------------------------------------------------- /collections/_inc/inc-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/_inc/inc-header.php -------------------------------------------------------------------------------- /collections/_inc/inc-sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/_inc/inc-sidebar.php -------------------------------------------------------------------------------- /collections/_inc/inc-topbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/_inc/inc-topbar.php -------------------------------------------------------------------------------- /collections/album.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/album.php -------------------------------------------------------------------------------- /collections/album_diary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/album_diary.php -------------------------------------------------------------------------------- /collections/archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/archive.php -------------------------------------------------------------------------------- /collections/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/contact.php -------------------------------------------------------------------------------- /collections/favorites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/favorites.php -------------------------------------------------------------------------------- /collections/fonts/InterVariable-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/fonts/InterVariable-Italic.woff2 -------------------------------------------------------------------------------- /collections/fonts/InterVariable.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/fonts/InterVariable.woff2 -------------------------------------------------------------------------------- /collections/fonts/coll_icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/fonts/coll_icons.woff2 -------------------------------------------------------------------------------- /collections/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/functions.php -------------------------------------------------------------------------------- /collections/gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/gallery.php -------------------------------------------------------------------------------- /collections/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/image.php -------------------------------------------------------------------------------- /collections/images/cursor_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/cursor_close.png -------------------------------------------------------------------------------- /collections/images/cursor_close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/cursor_close.svg -------------------------------------------------------------------------------- /collections/images/cursor_close_night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/cursor_close_night.svg -------------------------------------------------------------------------------- /collections/images/cursor_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/cursor_left.png -------------------------------------------------------------------------------- /collections/images/cursor_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/cursor_left.svg -------------------------------------------------------------------------------- /collections/images/cursor_left_night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/cursor_left_night.svg -------------------------------------------------------------------------------- /collections/images/cursor_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/cursor_right.png -------------------------------------------------------------------------------- /collections/images/cursor_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/cursor_right.svg -------------------------------------------------------------------------------- /collections/images/cursor_right_night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/cursor_right_night.svg -------------------------------------------------------------------------------- /collections/images/day.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/day.svg -------------------------------------------------------------------------------- /collections/images/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/down.svg -------------------------------------------------------------------------------- /collections/images/err-passwordprotected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/err-passwordprotected.png -------------------------------------------------------------------------------- /collections/images/err-passwordprotected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/err-passwordprotected.svg -------------------------------------------------------------------------------- /collections/images/err-passwordprotected_night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/err-passwordprotected_night.svg -------------------------------------------------------------------------------- /collections/images/f_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/f_add.svg -------------------------------------------------------------------------------- /collections/images/f_add_night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/f_add_night.svg -------------------------------------------------------------------------------- /collections/images/f_rem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/f_rem.svg -------------------------------------------------------------------------------- /collections/images/icon-loader-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/icon-loader-2.gif -------------------------------------------------------------------------------- /collections/images/imageDefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/imageDefault.png -------------------------------------------------------------------------------- /collections/images/imageDefault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/imageDefault.svg -------------------------------------------------------------------------------- /collections/images/imageDefault_night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/imageDefault_night.svg -------------------------------------------------------------------------------- /collections/images/night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/night.svg -------------------------------------------------------------------------------- /collections/images/search_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/search_dark.svg -------------------------------------------------------------------------------- /collections/images/search_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/search_light.svg -------------------------------------------------------------------------------- /collections/images/textDefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/textDefault.png -------------------------------------------------------------------------------- /collections/images/textDefault.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/textDefault.svg -------------------------------------------------------------------------------- /collections/images/textDefault_night.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/images/textDefault_night.svg -------------------------------------------------------------------------------- /collections/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/index.php -------------------------------------------------------------------------------- /collections/js/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/js/collection.js -------------------------------------------------------------------------------- /collections/js/shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/js/shuffle.js -------------------------------------------------------------------------------- /collections/js/unused.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/js/unused.js -------------------------------------------------------------------------------- /collections/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/logo.png -------------------------------------------------------------------------------- /collections/news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/news.php -------------------------------------------------------------------------------- /collections/pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/pages.php -------------------------------------------------------------------------------- /collections/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/password.php -------------------------------------------------------------------------------- /collections/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/register.php -------------------------------------------------------------------------------- /collections/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/search.php -------------------------------------------------------------------------------- /collections/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/styles.css -------------------------------------------------------------------------------- /collections/styles.more.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/styles.more.css -------------------------------------------------------------------------------- /collections/styles.trash.bin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/styles.trash.bin.css -------------------------------------------------------------------------------- /collections/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/theme.png -------------------------------------------------------------------------------- /collections/theme_description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/theme_description.php -------------------------------------------------------------------------------- /collections/themeoptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections/themeoptions.php -------------------------------------------------------------------------------- /collections_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections_00.jpg -------------------------------------------------------------------------------- /collections_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections_01.jpg -------------------------------------------------------------------------------- /collections_02_sidebar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/collections_02_sidebar.jpg -------------------------------------------------------------------------------- /screenshots/screenshots_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/screenshots/screenshots_01.jpg -------------------------------------------------------------------------------- /screenshots/screenshots_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RolandTi/collections/HEAD/screenshots/screenshots_02.jpg --------------------------------------------------------------------------------