Added three videos to documentation.
authorDan Hersam <dan@hersam.com>
Tue, 27 Jan 2015 22:14:19 +0000 (17:14 -0500)
committerbep <bjorn.erik.pedersen@gmail.com>
Tue, 27 Jan 2015 22:44:46 +0000 (23:44 +0100)
Created shortcode for YouTube videos and made the videos responsive in the
stylesheet.

docs/content/overview/introduction.md
docs/content/overview/quickstart.md
docs/content/troubleshooting/overview.md
docs/layouts/shortcodes/youtube.html [new file with mode: 0644]
docs/static/css/style.css

index 56ad589e121367eca7ac05a470033ad34d036139..cfa7f39df3308d55337ce3dd967696e36e1f4fc0 100644 (file)
@@ -37,6 +37,10 @@ build times and the ability to rebuild whenever a change is made, Hugo
 provides a very fast feedback loop. This is essential when you are
 designing websites, but also very useful when creating content.
 
+## How fast is Hugo?
+
+{{% youtube CdiDYZ51a2o %}}
+
 ## What does Hugo do?
 
 In technical terms, Hugo takes a source directory of Markdown files and
index 3f13b20e2b4a5f44bf96b9001fa9ae8a79dddab8..0b1f292a7292775c776702b7f998fda4a946a850 100644 (file)
@@ -12,6 +12,8 @@ weight: 10
 
 > _Note: This quickstart depends on features introduced in Hugo v0.11.  If you have an earlier version of Hugo, you will need to [upgrade](/overview/installing/) before proceeding._
 
+{{% youtube w7Ft2ymGmfc %}}
+
 ## Step 1. Install Hugo
 
 Go to [Hugo Releases](https://github.com/spf13/hugo/releases) and download the
index 5397604ba37af7751ac7ce9c42aab88a6a6c8464..e23e25dd945938671177c817f4e9049c51f8e99f 100644 (file)
@@ -20,6 +20,8 @@ Here are some examples:
 * [How do I include an image gallery on my website?](http://discuss.gohugo.io/t/image-gallery/594)
 * ... And a lot more!
 
+{{% youtube c8fJIRNChmU %}}
+
 Indeed, you may find many questions and solutions
 to problems in our [discussion forum](http://discuss.gohugo.io/),
 and you may find the [support](http://discuss.gohugo.io/category/support)
diff --git a/docs/layouts/shortcodes/youtube.html b/docs/layouts/shortcodes/youtube.html
new file mode 100644 (file)
index 0000000..9b4a37c
--- /dev/null
@@ -0,0 +1,4 @@
+<div class="video-container">
+<iframe class="youtube-player" type="text/html" width="100%" height="auto" src="http://www.youtube.com/embed/{{ index .Params 0 }}" allowfullscreen frameborder="0">
+</iframe>
+</div>
index 3b13ff4a02a98feb8670c7520691bf1201f94613..478134a89b3173e66f6f470e90066a2848cca681 100755 (executable)
@@ -531,3 +531,23 @@ i.freebsd-19px:before {
   content: url(/img/freebsd-19px.svg);
   vertical-align: -7%;
 }
+
+/* Responsive videos */
+.video-container {
+    position: relative;
+    padding-bottom: 56.25%; /* 16:9 */
+    padding-top: 30px;
+    height: 0;
+    overflow: hidden;
+    margin: 20px 0;
+}
+.video-container iframe,
+.video-container object,
+.video-container embed {
+    position: absolute;
+    top: 0;
+    left: 0;
+    width: 100%;
+    height: 100%;    
+}