diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2013-09-22 15:48:07 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2013-09-22 15:48:07 -0700 |
commit | 7b85c3c92a56ef2070cd99c6c53c2ae7e2b45f9b (patch) | |
tree | 7c8076c50c447b5d800522d59bbcc327a72ef0e8 | |
parent | 5bec5c3f5bf660be3afda3d9046863b5da53dd2c (diff) |
Adding two new video formats for hero video
-rw-r--r-- | src/templates/templates/index-hero.ftl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/templates/templates/index-hero.ftl b/src/templates/templates/index-hero.ftl index e18e812..0bbd7c9 100644 --- a/src/templates/templates/index-hero.ftl +++ b/src/templates/templates/index-hero.ftl @@ -1,6 +1,7 @@ <div id="hero"> <video width="711" height="400" poster="${staticRoot}/images/grow-poster.png" autoplay="autoplay"> - <source src="http://foursquaregrow.s3-website-us-east-1.amazonaws.com/grow-hero.mov" type="video/mp4" /> + <source src="http://foursquaregrow.s3-website-us-east-1.amazonaws.com/grow-hero.mp4" type="video/mp4" /> + <source src="http://foursquaregrow.s3-website-us-east-1.amazonaws.com/grow-hero.webm" type="video/webm" /> <img src="${staticRoot}/images/grow-poster.png" alt="Grow Process" /> </video> </div> |