datat.fi/docs/_posts/2010-06-02-post-video-youtu...

29 lines
766 B
Markdown
Raw Normal View History

2017-03-20 21:35:13 +02:00
---
title: "Post: Video (YouTube)"
categories:
- Post Formats
tags:
- Post Formats
2017-03-23 21:52:11 +02:00
last_modified_at: 2017-03-23T15:33:37-04:00
2017-03-20 21:35:13 +02:00
---
2017-03-23 21:52:11 +02:00
<div class="embed-responsive embed-responsive-16by9">
<iframe width="640" height="360" src="https://www.youtube-nocookie.com/embed/l2Of1-d5E5o?controls=0&amp;" frameborder="0" allowfullscreen></iframe>
</div>
2017-03-20 21:35:13 +02:00
2017-03-23 21:52:11 +02:00
This post tests YouTube video embeds.
Simply wrap embeds with a `<div>` element and the appropriate classes:
```html
<!-- 16:9 aspect ratio -->
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="..."></iframe>
</div>
<!-- 4:3 aspect ratio -->
<div class="embed-responsive embed-responsive-4by3">
<iframe class="embed-responsive-item" src="..."></iframe>
</div>
```