├── .bowerrc ├── .github └── workflows │ ├── continuous-integration.yml │ └── deploy.yml ├── .gitignore ├── README.md ├── bower.json ├── composer.json ├── composer.lock ├── couscous.yml ├── git └── workflow.md ├── gulpfile.js ├── index.md ├── libraries └── curated_list.md ├── package.json ├── php ├── cli.md ├── coding_style.md ├── defensive_programming.md ├── design_beautiful_classes_and_methods.md ├── development_environment.md ├── error_handling.md ├── libraries │ └── doctrine.md ├── organize_your_code.md └── tooling.md └── template ├── CNAME ├── default.twig ├── img ├── cd-top-arrow.svg ├── favicon │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── manifest.json │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ └── ms-icon-70x70.png ├── github.gif ├── image1.jpg ├── image13.jpg ├── image18.jpg ├── image1_1.jpg ├── image2.jpg ├── image22.jpg ├── image4.jpg ├── image8.jpg ├── image9.jpg ├── logo-black.svg ├── logo-final_blanc.png ├── logo-final_noir.png ├── logo.png ├── logo.svg ├── logo_banner.png ├── origa-1.png ├── origa-2.png ├── origa-3.png ├── rescue.png ├── rescue.svg ├── share.png ├── share.svg ├── user.png └── user.svg ├── js ├── GlobalFunction.js ├── filtrify.min.js ├── fitvid.js ├── inner-plan.js ├── libs │ ├── FitVids.js-master │ │ ├── CONTRIBUTING.md │ │ ├── component.json │ │ └── jquery.fitvids.js │ ├── bootstrap.min.js │ └── modernizr.custom.min.js └── scripts.js └── less ├── bootstrap ├── .csscomb.json ├── .csslintrc ├── alerts.less ├── badges.less ├── bootstrap.less ├── breadcrumbs.less ├── button-groups.less ├── buttons.less ├── carousel.less ├── close.less ├── code.less ├── component-animations.less ├── dropdowns.less ├── forms.less ├── glyphicons.less ├── grid.less ├── input-groups.less ├── jumbotron.less ├── labels.less ├── list-group.less ├── media.less ├── mixins.less ├── mixins │ ├── alerts.less │ ├── background-variant.less │ ├── border-radius.less │ ├── buttons.less │ ├── center-block.less │ ├── clearfix.less │ ├── forms.less │ ├── gradients.less │ ├── grid-framework.less │ ├── grid.less │ ├── hide-text.less │ ├── image.less │ ├── labels.less │ ├── list-group.less │ ├── nav-divider.less │ ├── nav-vertical-align.less │ ├── opacity.less │ ├── pagination.less │ ├── panels.less │ ├── progress-bar.less │ ├── reset-filter.less │ ├── resize.less │ ├── responsive-visibility.less │ ├── size.less │ ├── tab-focus.less │ ├── table-row.less │ ├── text-emphasis.less │ ├── text-overflow.less │ └── vendor-prefixes.less ├── modals.less ├── navbar.less ├── navs.less ├── normalize.less ├── pager.less ├── pagination.less ├── panels.less ├── popovers.less ├── print.less ├── progress-bars.less ├── responsive-embed.less ├── responsive-utilities.less ├── scaffolding.less ├── tables.less ├── theme.less ├── thumbnails.less ├── tooltip.less ├── type.less ├── utilities.less ├── variables.less └── wells.less ├── brew ├── body.less ├── brew.less ├── comments.less ├── components.less ├── content.less ├── footer.less ├── form.less ├── global.less ├── nav.less ├── sidebar.less ├── tables.less └── wp-core.less ├── css ├── animate.less ├── base.css ├── bootstrap.css ├── ie.less └── login.less ├── custom-variables.less ├── custom ├── base.less ├── custom-less.less ├── custom-mixins.less ├── footer.less ├── global.less ├── header.less ├── variables.less └── view-blog.less ├── 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 └── less │ ├── bordered-pulled.less │ ├── core.less │ ├── fixed-width.less │ ├── font-awesome.less │ ├── icons.less │ ├── larger.less │ ├── list.less │ ├── mixins.less │ ├── path.less │ ├── rotated-flipped.less │ ├── spinning.less │ ├── stacked.less │ └── variables.less ├── other ├── _2x.less └── ie.less └── style.less /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "template/components" 3 | } -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/bower.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/composer.lock -------------------------------------------------------------------------------- /couscous.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/couscous.yml -------------------------------------------------------------------------------- /git/workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/git/workflow.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/index.md -------------------------------------------------------------------------------- /libraries/curated_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/libraries/curated_list.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/package.json -------------------------------------------------------------------------------- /php/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/php/cli.md -------------------------------------------------------------------------------- /php/coding_style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/php/coding_style.md -------------------------------------------------------------------------------- /php/defensive_programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/php/defensive_programming.md -------------------------------------------------------------------------------- /php/design_beautiful_classes_and_methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/php/design_beautiful_classes_and_methods.md -------------------------------------------------------------------------------- /php/development_environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/php/development_environment.md -------------------------------------------------------------------------------- /php/error_handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/php/error_handling.md -------------------------------------------------------------------------------- /php/libraries/doctrine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/php/libraries/doctrine.md -------------------------------------------------------------------------------- /php/organize_your_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/php/organize_your_code.md -------------------------------------------------------------------------------- /php/tooling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/php/tooling.md -------------------------------------------------------------------------------- /template/CNAME: -------------------------------------------------------------------------------- 1 | bestpractices.thecodingmachine.com 2 | -------------------------------------------------------------------------------- /template/default.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/default.twig -------------------------------------------------------------------------------- /template/img/cd-top-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/cd-top-arrow.svg -------------------------------------------------------------------------------- /template/img/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /template/img/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /template/img/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /template/img/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /template/img/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /template/img/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /template/img/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /template/img/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /template/img/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /template/img/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /template/img/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /template/img/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /template/img/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /template/img/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /template/img/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /template/img/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /template/img/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/apple-icon.png -------------------------------------------------------------------------------- /template/img/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/browserconfig.xml -------------------------------------------------------------------------------- /template/img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /template/img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /template/img/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /template/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/favicon.ico -------------------------------------------------------------------------------- /template/img/favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/manifest.json -------------------------------------------------------------------------------- /template/img/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /template/img/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /template/img/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /template/img/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /template/img/github.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/github.gif -------------------------------------------------------------------------------- /template/img/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/image1.jpg -------------------------------------------------------------------------------- /template/img/image13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/image13.jpg -------------------------------------------------------------------------------- /template/img/image18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/image18.jpg -------------------------------------------------------------------------------- /template/img/image1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/image1_1.jpg -------------------------------------------------------------------------------- /template/img/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/image2.jpg -------------------------------------------------------------------------------- /template/img/image22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/image22.jpg -------------------------------------------------------------------------------- /template/img/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/image4.jpg -------------------------------------------------------------------------------- /template/img/image8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/image8.jpg -------------------------------------------------------------------------------- /template/img/image9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/image9.jpg -------------------------------------------------------------------------------- /template/img/logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/logo-black.svg -------------------------------------------------------------------------------- /template/img/logo-final_blanc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/logo-final_blanc.png -------------------------------------------------------------------------------- /template/img/logo-final_noir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/logo-final_noir.png -------------------------------------------------------------------------------- /template/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/logo.png -------------------------------------------------------------------------------- /template/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/logo.svg -------------------------------------------------------------------------------- /template/img/logo_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/logo_banner.png -------------------------------------------------------------------------------- /template/img/origa-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/origa-1.png -------------------------------------------------------------------------------- /template/img/origa-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/origa-2.png -------------------------------------------------------------------------------- /template/img/origa-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/origa-3.png -------------------------------------------------------------------------------- /template/img/rescue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/rescue.png -------------------------------------------------------------------------------- /template/img/rescue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/rescue.svg -------------------------------------------------------------------------------- /template/img/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/share.png -------------------------------------------------------------------------------- /template/img/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/share.svg -------------------------------------------------------------------------------- /template/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/user.png -------------------------------------------------------------------------------- /template/img/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/img/user.svg -------------------------------------------------------------------------------- /template/js/GlobalFunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/js/GlobalFunction.js -------------------------------------------------------------------------------- /template/js/filtrify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/js/filtrify.min.js -------------------------------------------------------------------------------- /template/js/fitvid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/js/fitvid.js -------------------------------------------------------------------------------- /template/js/inner-plan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/js/inner-plan.js -------------------------------------------------------------------------------- /template/js/libs/FitVids.js-master/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/js/libs/FitVids.js-master/CONTRIBUTING.md -------------------------------------------------------------------------------- /template/js/libs/FitVids.js-master/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/js/libs/FitVids.js-master/component.json -------------------------------------------------------------------------------- /template/js/libs/FitVids.js-master/jquery.fitvids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/js/libs/FitVids.js-master/jquery.fitvids.js -------------------------------------------------------------------------------- /template/js/libs/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/js/libs/bootstrap.min.js -------------------------------------------------------------------------------- /template/js/libs/modernizr.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/js/libs/modernizr.custom.min.js -------------------------------------------------------------------------------- /template/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/js/scripts.js -------------------------------------------------------------------------------- /template/less/bootstrap/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/.csscomb.json -------------------------------------------------------------------------------- /template/less/bootstrap/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/.csslintrc -------------------------------------------------------------------------------- /template/less/bootstrap/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/alerts.less -------------------------------------------------------------------------------- /template/less/bootstrap/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/badges.less -------------------------------------------------------------------------------- /template/less/bootstrap/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/bootstrap.less -------------------------------------------------------------------------------- /template/less/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/breadcrumbs.less -------------------------------------------------------------------------------- /template/less/bootstrap/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/button-groups.less -------------------------------------------------------------------------------- /template/less/bootstrap/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/buttons.less -------------------------------------------------------------------------------- /template/less/bootstrap/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/carousel.less -------------------------------------------------------------------------------- /template/less/bootstrap/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/close.less -------------------------------------------------------------------------------- /template/less/bootstrap/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/code.less -------------------------------------------------------------------------------- /template/less/bootstrap/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/component-animations.less -------------------------------------------------------------------------------- /template/less/bootstrap/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/dropdowns.less -------------------------------------------------------------------------------- /template/less/bootstrap/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/forms.less -------------------------------------------------------------------------------- /template/less/bootstrap/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/glyphicons.less -------------------------------------------------------------------------------- /template/less/bootstrap/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/grid.less -------------------------------------------------------------------------------- /template/less/bootstrap/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/input-groups.less -------------------------------------------------------------------------------- /template/less/bootstrap/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/jumbotron.less -------------------------------------------------------------------------------- /template/less/bootstrap/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/labels.less -------------------------------------------------------------------------------- /template/less/bootstrap/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/list-group.less -------------------------------------------------------------------------------- /template/less/bootstrap/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/media.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/alerts.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/background-variant.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/background-variant.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/border-radius.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/border-radius.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/buttons.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/center-block.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/center-block.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/clearfix.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/forms.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/gradients.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/grid-framework.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/grid-framework.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/grid.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/hide-text.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/image.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/labels.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/list-group.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/nav-divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/nav-divider.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/nav-vertical-align.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/opacity.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/pagination.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/panels.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/progress-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/progress-bar.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/reset-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/reset-filter.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/resize.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/responsive-visibility.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/size.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/tab-focus.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/table-row.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/text-emphasis.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/text-emphasis.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/text-overflow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/text-overflow.less -------------------------------------------------------------------------------- /template/less/bootstrap/mixins/vendor-prefixes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/mixins/vendor-prefixes.less -------------------------------------------------------------------------------- /template/less/bootstrap/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/modals.less -------------------------------------------------------------------------------- /template/less/bootstrap/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/navbar.less -------------------------------------------------------------------------------- /template/less/bootstrap/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/navs.less -------------------------------------------------------------------------------- /template/less/bootstrap/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/normalize.less -------------------------------------------------------------------------------- /template/less/bootstrap/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/pager.less -------------------------------------------------------------------------------- /template/less/bootstrap/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/pagination.less -------------------------------------------------------------------------------- /template/less/bootstrap/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/panels.less -------------------------------------------------------------------------------- /template/less/bootstrap/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/popovers.less -------------------------------------------------------------------------------- /template/less/bootstrap/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/print.less -------------------------------------------------------------------------------- /template/less/bootstrap/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/progress-bars.less -------------------------------------------------------------------------------- /template/less/bootstrap/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/responsive-embed.less -------------------------------------------------------------------------------- /template/less/bootstrap/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/responsive-utilities.less -------------------------------------------------------------------------------- /template/less/bootstrap/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/scaffolding.less -------------------------------------------------------------------------------- /template/less/bootstrap/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/tables.less -------------------------------------------------------------------------------- /template/less/bootstrap/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/theme.less -------------------------------------------------------------------------------- /template/less/bootstrap/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/thumbnails.less -------------------------------------------------------------------------------- /template/less/bootstrap/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/tooltip.less -------------------------------------------------------------------------------- /template/less/bootstrap/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/type.less -------------------------------------------------------------------------------- /template/less/bootstrap/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/utilities.less -------------------------------------------------------------------------------- /template/less/bootstrap/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/variables.less -------------------------------------------------------------------------------- /template/less/bootstrap/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/bootstrap/wells.less -------------------------------------------------------------------------------- /template/less/brew/body.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/brew/body.less -------------------------------------------------------------------------------- /template/less/brew/brew.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/brew/brew.less -------------------------------------------------------------------------------- /template/less/brew/comments.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/brew/comments.less -------------------------------------------------------------------------------- /template/less/brew/components.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/brew/components.less -------------------------------------------------------------------------------- /template/less/brew/content.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/brew/content.less -------------------------------------------------------------------------------- /template/less/brew/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/brew/footer.less -------------------------------------------------------------------------------- /template/less/brew/form.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/brew/form.less -------------------------------------------------------------------------------- /template/less/brew/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/brew/global.less -------------------------------------------------------------------------------- /template/less/brew/nav.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/brew/nav.less -------------------------------------------------------------------------------- /template/less/brew/sidebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/brew/sidebar.less -------------------------------------------------------------------------------- /template/less/brew/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/brew/tables.less -------------------------------------------------------------------------------- /template/less/brew/wp-core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/brew/wp-core.less -------------------------------------------------------------------------------- /template/less/css/animate.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/css/animate.less -------------------------------------------------------------------------------- /template/less/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/css/base.css -------------------------------------------------------------------------------- /template/less/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/css/bootstrap.css -------------------------------------------------------------------------------- /template/less/css/ie.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/css/ie.less -------------------------------------------------------------------------------- /template/less/css/login.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/css/login.less -------------------------------------------------------------------------------- /template/less/custom-variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/custom-variables.less -------------------------------------------------------------------------------- /template/less/custom/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/custom/base.less -------------------------------------------------------------------------------- /template/less/custom/custom-less.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/custom/custom-less.less -------------------------------------------------------------------------------- /template/less/custom/custom-mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/custom/custom-mixins.less -------------------------------------------------------------------------------- /template/less/custom/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/custom/footer.less -------------------------------------------------------------------------------- /template/less/custom/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/custom/global.less -------------------------------------------------------------------------------- /template/less/custom/header.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/custom/header.less -------------------------------------------------------------------------------- /template/less/custom/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/custom/variables.less -------------------------------------------------------------------------------- /template/less/custom/view-blog.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/custom/view-blog.less -------------------------------------------------------------------------------- /template/less/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /template/less/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /template/less/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /template/less/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /template/less/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /template/less/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /template/less/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /template/less/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/less/bordered-pulled.less -------------------------------------------------------------------------------- /template/less/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/less/core.less -------------------------------------------------------------------------------- /template/less/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/less/fixed-width.less -------------------------------------------------------------------------------- /template/less/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/less/font-awesome.less -------------------------------------------------------------------------------- /template/less/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/less/icons.less -------------------------------------------------------------------------------- /template/less/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/less/larger.less -------------------------------------------------------------------------------- /template/less/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/less/list.less -------------------------------------------------------------------------------- /template/less/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /template/less/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/less/path.less -------------------------------------------------------------------------------- /template/less/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/less/rotated-flipped.less -------------------------------------------------------------------------------- /template/less/font-awesome/less/spinning.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/less/spinning.less -------------------------------------------------------------------------------- /template/less/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/less/stacked.less -------------------------------------------------------------------------------- /template/less/font-awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/font-awesome/less/variables.less -------------------------------------------------------------------------------- /template/less/other/_2x.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/other/_2x.less -------------------------------------------------------------------------------- /template/less/other/ie.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/other/ie.less -------------------------------------------------------------------------------- /template/less/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingmachine/best-practices/HEAD/template/less/style.less --------------------------------------------------------------------------------