├── .gitignore ├── README.md ├── css ├── custom.css ├── isima.css ├── light.css └── solarized.css ├── isima-php.cfg ├── iut-extended.cfg ├── iut-php.cfg ├── publish ├── src ├── agenda │ ├── isima-php.md │ ├── iut-extended.md │ └── iut-php.md ├── common │ ├── 01_php_hypertext_preprocessor.md │ ├── 02_the_php_syntax.md │ ├── 03_the_php_command_line.md │ ├── 04_client_server.md │ ├── 05_autoloading.md │ ├── 06_leveraging_php_apis.md │ ├── 07_dependency_management_in_php.md │ ├── 08_model_view_controller.md │ ├── 09_databases.md │ ├── 10_sessions.md │ └── 11_authentication.md ├── extended │ ├── 00_intro.md │ ├── 01_symfony2.md │ ├── 02_symfony2_controllers.md │ ├── 03_symfony2_templating.md │ ├── 04_symfony2_dependency_injection.md │ ├── 05_symfony2_command_line.md │ ├── 06_symfony2_forms.md │ ├── 07_symfony2_validation.md │ ├── 08_symfony2_translation.md │ ├── 09_http_cache.md │ ├── 10_stackphp.md │ └── 11_end.md ├── first │ ├── isima-php.md │ ├── iut-extended.md │ └── iut-php.md ├── hack │ └── 00_intro.md ├── images │ ├── 11-steps.png │ ├── MVC.png │ ├── active-record.png │ ├── authentication_mechanism.png │ ├── clermontech.png │ ├── client-server.png │ ├── client_server_with_auth.png │ ├── client_server_without_auth.png │ ├── core-team.jpg │ ├── data-mapper.png │ ├── esi.png │ ├── front-controller.png │ ├── gifts.jpg │ ├── github.png │ ├── hack.png │ ├── haha.jpg │ ├── hhvm.jpg │ ├── http-kernel.png │ ├── identity-map.png │ ├── many-to-many.png │ ├── one-to-many.png │ ├── one-to-one.png │ ├── onion.png │ ├── react.png │ ├── repository.gif │ ├── rmm.png │ ├── rmm0.png │ ├── rmm1.png │ ├── rmm2.png │ ├── rmm3.png │ ├── row-data-gateway.png │ ├── sf2_simple_form.png │ ├── specification.png │ ├── symfony-github.png │ ├── symfony.png │ ├── symfony_built_in_form_types.png │ ├── symfony_validation_constraints.jpg │ ├── table-data-gateway.png │ ├── travis-ci.png │ ├── twig_homepage.png │ ├── whoops.png │ └── y-u-no-use-linux.jpg ├── isima │ └── end.md ├── iut │ ├── 07_dependency_management_example.md │ ├── 12_writing_better_code.md │ ├── 13_testing.md │ ├── 14_awesome_projects.md │ ├── 15_embracing_open_source.md │ └── 16_end.md └── me.md └── themes └── avalanche └── avalanche ├── base.html ├── css ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff ├── print-1-per-page.css ├── print-3-per-page.css ├── print.css └── screen.css └── js └── slides.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/README.md -------------------------------------------------------------------------------- /css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/css/custom.css -------------------------------------------------------------------------------- /css/isima.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/css/isima.css -------------------------------------------------------------------------------- /css/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/css/light.css -------------------------------------------------------------------------------- /css/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/css/solarized.css -------------------------------------------------------------------------------- /isima-php.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/isima-php.cfg -------------------------------------------------------------------------------- /iut-extended.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/iut-extended.cfg -------------------------------------------------------------------------------- /iut-php.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/iut-php.cfg -------------------------------------------------------------------------------- /publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/publish -------------------------------------------------------------------------------- /src/agenda/isima-php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/agenda/isima-php.md -------------------------------------------------------------------------------- /src/agenda/iut-extended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/agenda/iut-extended.md -------------------------------------------------------------------------------- /src/agenda/iut-php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/agenda/iut-php.md -------------------------------------------------------------------------------- /src/common/01_php_hypertext_preprocessor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/common/01_php_hypertext_preprocessor.md -------------------------------------------------------------------------------- /src/common/02_the_php_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/common/02_the_php_syntax.md -------------------------------------------------------------------------------- /src/common/03_the_php_command_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/common/03_the_php_command_line.md -------------------------------------------------------------------------------- /src/common/04_client_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/common/04_client_server.md -------------------------------------------------------------------------------- /src/common/05_autoloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/common/05_autoloading.md -------------------------------------------------------------------------------- /src/common/06_leveraging_php_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/common/06_leveraging_php_apis.md -------------------------------------------------------------------------------- /src/common/07_dependency_management_in_php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/common/07_dependency_management_in_php.md -------------------------------------------------------------------------------- /src/common/08_model_view_controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/common/08_model_view_controller.md -------------------------------------------------------------------------------- /src/common/09_databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/common/09_databases.md -------------------------------------------------------------------------------- /src/common/10_sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/common/10_sessions.md -------------------------------------------------------------------------------- /src/common/11_authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/common/11_authentication.md -------------------------------------------------------------------------------- /src/extended/00_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/extended/00_intro.md -------------------------------------------------------------------------------- /src/extended/01_symfony2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/extended/01_symfony2.md -------------------------------------------------------------------------------- /src/extended/02_symfony2_controllers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/extended/02_symfony2_controllers.md -------------------------------------------------------------------------------- /src/extended/03_symfony2_templating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/extended/03_symfony2_templating.md -------------------------------------------------------------------------------- /src/extended/04_symfony2_dependency_injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/extended/04_symfony2_dependency_injection.md -------------------------------------------------------------------------------- /src/extended/05_symfony2_command_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/extended/05_symfony2_command_line.md -------------------------------------------------------------------------------- /src/extended/06_symfony2_forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/extended/06_symfony2_forms.md -------------------------------------------------------------------------------- /src/extended/07_symfony2_validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/extended/07_symfony2_validation.md -------------------------------------------------------------------------------- /src/extended/08_symfony2_translation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/extended/08_symfony2_translation.md -------------------------------------------------------------------------------- /src/extended/09_http_cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/extended/09_http_cache.md -------------------------------------------------------------------------------- /src/extended/10_stackphp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/extended/10_stackphp.md -------------------------------------------------------------------------------- /src/extended/11_end.md: -------------------------------------------------------------------------------- 1 | # The End. 2 | -------------------------------------------------------------------------------- /src/first/isima-php.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/first/isima-php.md -------------------------------------------------------------------------------- /src/first/iut-extended.md: -------------------------------------------------------------------------------- 1 | # PHP Extended 2 | 3 | --- 4 | 5 | # Let's Do Professional Development Now! 6 | -------------------------------------------------------------------------------- /src/first/iut-php.md: -------------------------------------------------------------------------------- 1 | # PHP 2 | -------------------------------------------------------------------------------- /src/hack/00_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/hack/00_intro.md -------------------------------------------------------------------------------- /src/images/11-steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/11-steps.png -------------------------------------------------------------------------------- /src/images/MVC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/MVC.png -------------------------------------------------------------------------------- /src/images/active-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/active-record.png -------------------------------------------------------------------------------- /src/images/authentication_mechanism.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/authentication_mechanism.png -------------------------------------------------------------------------------- /src/images/clermontech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/clermontech.png -------------------------------------------------------------------------------- /src/images/client-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/client-server.png -------------------------------------------------------------------------------- /src/images/client_server_with_auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/client_server_with_auth.png -------------------------------------------------------------------------------- /src/images/client_server_without_auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/client_server_without_auth.png -------------------------------------------------------------------------------- /src/images/core-team.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/core-team.jpg -------------------------------------------------------------------------------- /src/images/data-mapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/data-mapper.png -------------------------------------------------------------------------------- /src/images/esi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/esi.png -------------------------------------------------------------------------------- /src/images/front-controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/front-controller.png -------------------------------------------------------------------------------- /src/images/gifts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/gifts.jpg -------------------------------------------------------------------------------- /src/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/github.png -------------------------------------------------------------------------------- /src/images/hack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/hack.png -------------------------------------------------------------------------------- /src/images/haha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/haha.jpg -------------------------------------------------------------------------------- /src/images/hhvm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/hhvm.jpg -------------------------------------------------------------------------------- /src/images/http-kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/http-kernel.png -------------------------------------------------------------------------------- /src/images/identity-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/identity-map.png -------------------------------------------------------------------------------- /src/images/many-to-many.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/many-to-many.png -------------------------------------------------------------------------------- /src/images/one-to-many.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/one-to-many.png -------------------------------------------------------------------------------- /src/images/one-to-one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/one-to-one.png -------------------------------------------------------------------------------- /src/images/onion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/onion.png -------------------------------------------------------------------------------- /src/images/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/react.png -------------------------------------------------------------------------------- /src/images/repository.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/repository.gif -------------------------------------------------------------------------------- /src/images/rmm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/rmm.png -------------------------------------------------------------------------------- /src/images/rmm0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/rmm0.png -------------------------------------------------------------------------------- /src/images/rmm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/rmm1.png -------------------------------------------------------------------------------- /src/images/rmm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/rmm2.png -------------------------------------------------------------------------------- /src/images/rmm3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/rmm3.png -------------------------------------------------------------------------------- /src/images/row-data-gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/row-data-gateway.png -------------------------------------------------------------------------------- /src/images/sf2_simple_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/sf2_simple_form.png -------------------------------------------------------------------------------- /src/images/specification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/specification.png -------------------------------------------------------------------------------- /src/images/symfony-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/symfony-github.png -------------------------------------------------------------------------------- /src/images/symfony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/symfony.png -------------------------------------------------------------------------------- /src/images/symfony_built_in_form_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/symfony_built_in_form_types.png -------------------------------------------------------------------------------- /src/images/symfony_validation_constraints.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/symfony_validation_constraints.jpg -------------------------------------------------------------------------------- /src/images/table-data-gateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/table-data-gateway.png -------------------------------------------------------------------------------- /src/images/travis-ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/travis-ci.png -------------------------------------------------------------------------------- /src/images/twig_homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/twig_homepage.png -------------------------------------------------------------------------------- /src/images/whoops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/whoops.png -------------------------------------------------------------------------------- /src/images/y-u-no-use-linux.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/images/y-u-no-use-linux.jpg -------------------------------------------------------------------------------- /src/isima/end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/isima/end.md -------------------------------------------------------------------------------- /src/iut/07_dependency_management_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/iut/07_dependency_management_example.md -------------------------------------------------------------------------------- /src/iut/12_writing_better_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/iut/12_writing_better_code.md -------------------------------------------------------------------------------- /src/iut/13_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/iut/13_testing.md -------------------------------------------------------------------------------- /src/iut/14_awesome_projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/iut/14_awesome_projects.md -------------------------------------------------------------------------------- /src/iut/15_embracing_open_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/iut/15_embracing_open_source.md -------------------------------------------------------------------------------- /src/iut/16_end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/iut/16_end.md -------------------------------------------------------------------------------- /src/me.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/src/me.md -------------------------------------------------------------------------------- /themes/avalanche/avalanche/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/themes/avalanche/avalanche/base.html -------------------------------------------------------------------------------- /themes/avalanche/avalanche/css/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/themes/avalanche/avalanche/css/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /themes/avalanche/avalanche/css/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/themes/avalanche/avalanche/css/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /themes/avalanche/avalanche/css/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/themes/avalanche/avalanche/css/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /themes/avalanche/avalanche/css/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/themes/avalanche/avalanche/css/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /themes/avalanche/avalanche/css/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/themes/avalanche/avalanche/css/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /themes/avalanche/avalanche/css/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/themes/avalanche/avalanche/css/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /themes/avalanche/avalanche/css/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/themes/avalanche/avalanche/css/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /themes/avalanche/avalanche/css/print-1-per-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/themes/avalanche/avalanche/css/print-1-per-page.css -------------------------------------------------------------------------------- /themes/avalanche/avalanche/css/print-3-per-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/themes/avalanche/avalanche/css/print-3-per-page.css -------------------------------------------------------------------------------- /themes/avalanche/avalanche/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/themes/avalanche/avalanche/css/print.css -------------------------------------------------------------------------------- /themes/avalanche/avalanche/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/themes/avalanche/avalanche/css/screen.css -------------------------------------------------------------------------------- /themes/avalanche/avalanche/js/slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willdurand-edu/php-slides/HEAD/themes/avalanche/avalanche/js/slides.js --------------------------------------------------------------------------------