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
| /* GOOGLE ANALYTICS */ | |
| function add_google_analytics() { | |
| echo '<script src="http://www.google-analytics.com/ga.js" type="text/javascript"></script>'; | |
| echo '<script type="text/javascript">'; | |
| echo 'var pageTracker = _gat._getTracker("CODIGO_AQUI");'; | |
| echo 'pageTracker._trackPageview();'; | |
| echo '</script>'; | |
| } | |
| add_action('wp_footer', 'add_google_analytics'); |
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
| function get_permalink_by_name($page_name) | |
| { | |
| global $post; | |
| global $wpdb; | |
| $pageid_name = $wpdb->get_var("SELECT ID FROM $wpdb->posts WHERE post_name = '".$page_name."'"); | |
| return get_permalink($pageid_name); | |
| } |
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
| [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" | |
| parse_git_branch() { | |
| git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\ →\ \1/' | |
| } | |
| # export PS1="\[\e[0;31m\][\u] \W\n$ " | |
| export PS1='\[\e[1;37m\]\W\[\e[1;36m\]$(parse_git_branch)\[\e[0;39m\]\n$ ' | |
| export PROMPT_COMMAND='echo -ne "\033]0;${PWD}\007"' |
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
| { | |
| "auto_complete": true, | |
| "auto_complete_delay": 50, | |
| "auto_complete_selector": "source - comment", | |
| "auto_complete_size_limit": 4194304, | |
| "auto_complete_with_fields": true, | |
| "binary_file_patterns": | |
| [ | |
| "*.jpg", | |
| "*.jpeg", |
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
| .button | |
| box-shadow: 0 0 0 7px $clouds | |
| margin: 7px | |
| text-transform: uppercase | |
| font-size: .9em | |
| #logo | |
| +image-replace('logo.png') | |
| margin-top: 40px |
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
| [[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" | |
| parse_git_branch() { | |
| git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\ →\ \1/' | |
| } | |
| # export PS1="\[\e[0;31m\][\u] \W\n$ " | |
| export PS1='\[\e[1;37m\]\W\[\e[1;36m\]$(parse_git_branch)\[\e[0;39m\]\n$ ' | |
| export PROMPT_COMMAND='echo -ne "\033]0;${PWD}\007"' |
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
| def image_url | |
| File.exists?("#{Rails.root}/app/assets/images/cities/#{slug}.jpg") ? "cities/#{slug}.jpg" : "cities/rio-de-janeiro.jpg" | |
| end |
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
| export PATH="$HOME/.rbenv/bin:$PATH" | |
| eval "$(rbenv init -)" | |
| parse_git_branch() { | |
| git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\ →\ \1/' | |
| } | |
| # export PS1="\[\e[0;31m\][\u] \W\n$ " | |
| export PS1='\[\e[1;37m\]\W\[\e[1;36m\]$(parse_git_branch)\[\e[0;39m\]\n${debian_chroot:+($debian_chroot)}\[\033[00;36m\]⚡ ' |
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
| jQuery -> | |
| ###################################### | |
| # PLUGINS | |
| ###################################### | |
| # VERIFIES IF OBJECT IS ON BROWSERS VIEWPORT | |
| jQuery.fn.isOnScreen = (offsetTop = 0, offsetLeft = 0)-> | |
| win = $(window) | |
| viewport = { | |
| top: win.scrollTop() + offsetTop | |
| left: win.scrollLeft() + offsetLeft |
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
| .gallery-section | |
| position: relative | |
| z-index: 20 | |
| height: 50% | |
| padding-top: 62.5% | |
| .gallery-img | |
| width: 100% | |
| top: 0 | |
| position: absolute | |
| +transition(.5s) |