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
<li> | |
<a data-id="#" data-cat="eating" data-lat="#" data-long="#" data-title="Walnut Grove School of Music + Dance">Walnut Grove School of Music + Dance</a> | |
</li> |
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
@mixin below($width) { | |
@media screen and (max-width: $width - 1) { | |
@content; | |
} | |
} | |
@mixin above($width) { | |
@media screen and (min-width: $width + 1) { | |
@content; | |
} |
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
AddType image/svg+xml svg | |
AddType image/svg+xml svgz | |
# BEGIN WordPress | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.php$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d |
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
/* bootstrap fifths */ | |
.col-sm-fifth { | |
@include make-col-ready(); | |
@media (max-width: 34em) { | |
@include make-col(12); | |
} | |
@media (min-width: 34.1em) { | |
@include make-col(2.4); |
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 | |
$defaults = array( | |
'menu_class' => 'main-menu', | |
'link_before' => '<span>', | |
'link_after' => '</span>' | |
); | |
wp_nav_menu( $defaults ); | |
?> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#301 Redirects for .htaccess | |
#Redirect a single page: | |
Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
#Redirect an entire site: | |
Redirect 301 / http://www.domain.com/ | |
#Redirect an entire site to a sub folder | |
Redirect 301 / http://www.domain.com/subfolder/ |
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
AddType image/svg+xml svg | |
AddType image/svg+xml svgz |
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
// facebook image minimum resolution 1200x630, twitter < 1mb | |
<meta property="og:title" content="European Travel Destinations"> | |
<meta property="og:description" content="Offering tour packages for individuals or groups."> | |
<meta property="og:image" content="http://euro-travel-example.com/thumbnail.jpg"> | |
<meta property="og:url" content="http://euro-travel-example.com/index.htm"> | |
<meta name="twitter:card" content="summary_large_image"> | |
// non-essential, but recommended | |
<meta name="og:site_name" content="European Travel, Inc."> | |
<meta name="twitter:image:alt" content="Alt text for image"> |