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
find . -name '*.DS_Store' -type f -delete |
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
<input type="url" id="cadastro-site" placeholder="http://www.site.com" pattern="^(http://|https://)(www\.)?([a-zA-Z0-9]+)(\.)([a-zA-Z0-9]+)(\.[a-z]{2})?"> |
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
<input type="text" pattern="\d{2}.?\d{3}.?\d{3}/?\d{4}-?\d{2}|(^\d{3}\.\d{3}\.\d{3}-\d{2})|(^\d{3}\d{3}\d{3}\d{2})$" id="cadastro-cnpj" placeholder="00.000.000/0000-00" required><!-- 00.000.000/0000-00 ou 000.000.000-00 ou 00000000000 --> |
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
<div class="controls"> | |
<input type="tel" id="cadastro-tel" maxlength="2" class="" placeholder="00" pattern="^([0-9]{2})$" required> | |
<input type="tel" maxlength="10" class="span2" placeholder="0000-0000" required pattern="^([9]{1})?([0-9]{4})-([0-9]{4})|^([9]{1})?([0-9]{4})([0-9]{4})$"> | |
</div> |
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
{ | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme", | |
"dictionary": "Packages/Language - English/en_US.dic", | |
"font_face": "Source Code Pro", | |
"font_options": | |
[ | |
"subpixel_antialias" | |
], | |
"font_size": 12, |
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
<!--[if lt IE 7 ]> <html class="ie6" lang="pt-br"> <![endif]--> | |
<!--[if IE 7 ]> <html class="ie7" lang="pt-br"> <![endif]--> | |
<!--[if IE 8 ]> <html class="ie8" lang="pt-br"> <![endif]--> | |
<!--[if IE 9 ]> <html class="ie9" lang="pt-br"> <![endif]--> | |
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="pt-br"> <!--<![endif]--> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
// Sample grunt-jekyll grunt.js file | |
// https://github.com/dannygarcia/grunt-jekyll | |
/*global module:false*/ | |
module.exports = function(grunt) { | |
// Project configuration. | |
grunt.initConfig({ | |
jekyll: { |
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
/*! | |
* Project Gruntfile | |
*/ | |
'use strict'; | |
module.exports = function( grunt ) { | |
// Dynamically load npm tasks |