This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| global $template; | |
| $template_name = basename($template, '.php'); | |
| echo $template_name,".php"; | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = (grunt) -> | |
| grunt.initConfig | |
| watch: | |
| livereload: | |
| options: | |
| livereload: '<%= connect.options.livereload %>' | |
| files: ['*.html', 'stylesheets/*.css'] | |
| compass: | |
| files: ['sass/*.scss'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = (grunt) -> | |
| grunt.initConfig | |
| # compass task | |
| compass: | |
| dev: | |
| options: | |
| config: 'config.rb' | |
| outputStyle: 'expanded' | |
| prod: | |
| options: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "files": | |
| { | |
| "jquery": "http://code.jquery.com/jquery.min.js", | |
| "Modernizr.js": "http://modernizr.com/downloads/modernizr-latest.js", | |
| "Normalize.css": "https://raw.github.com/necolas/normalize.css/master/normalize.css", | |
| "raphael.js.": "http://github.com/DmitryBaranovskiy/raphael/raw/master/raphael-min.js", | |
| "Respond.js": "https://github.com/scottjehl/Respond/blob/master/respond.min.js", | |
| "Responsejs": "http://airve.github.io/js/response/response.min.js", | |
| "sanitize.css": "https://raw.githubusercontent.com/10up/sanitize.css/master/sanitize.css", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "auto_indent": true, | |
| "bold_folder_labels": true, | |
| "caret_extra_width": 2, | |
| "caret_style": "phase", | |
| "color_scheme": "Packages/User/Seti (SL).tmTheme", | |
| "detect_indentation": true, | |
| "detect_slow_plugins": false, | |
| "disable_formatted_linebreak": true, | |
| "disabled_single_snippet_for_scopes": "", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'webrick' | |
| include WEBrick | |
| WEBrick::HTTPUtils::DefaultMimeTypes.store 'svg', 'image/svg+xml' | |
| server = WEBrick::HTTPServer.new({ | |
| :DocumentRoot => './', | |
| :BindAddress => '0.0.0.0', | |
| :Port => 8000 | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "bower-component", | |
| "version": "0.0.0", | |
| "dependencies": { | |
| "jquery": "~1.9.1" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "project", | |
| "version": "0.0.1", | |
| "devDependencies": { | |
| "grunt": "~0.4.0" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*global module:false*/ | |
| module.exports = function(grunt) { | |
| // Project configuration. | |
| grunt.initConfig({ | |
| compass: { | |
| dev: { | |
| src: 'sass', | |
| dest: 'css', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = function(grunt) { | |
| grunt.initConfig({ | |
| recess: { | |
| dist: { | |
| src: ['less/*.less'], | |
| dest: ['css/combined.css'], | |
| options: { | |
| compile: true, |