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
/** | |
* Use Lite YouTube in posts embeds | |
* https://github.com/paulirish/lite-youtube-embed | |
*/ | |
add_filter('embed_oembed_html', function($cached_html, $url, $attr, $post_id) { | |
$querystring = parse_url($url, PHP_URL_QUERY); | |
parse_str($querystring, $params); | |
if (isset($params['v'])) { | |
$format = '<lite-youtube videoid="%s"></lite-youtube>'; |
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
@for $i from 1 through 13 { | |
@media (min-width: 576px) { | |
.grid-start-sm-#{$i} { | |
grid-column-start: #{$i}; | |
} | |
.grid-end-sm-#{$i} { | |
grid-column-end: #{$i}; | |
background: blue; |
OlderNewer