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
| <a href="http://player.vimeo.com/video/50905661" class="fancybox fancybox-media">modal video</a> |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Page Title</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <link rel="stylesheet" href="assets/css/main.css"> | |
| <link rel="stylesheet" href="assets/css/layout-sidebar-left.css"> | |
| <link rel="stylesheet" href="assets/css/theme.css"> | |
| <!-- Additional items go here, such as meta tags, scripts, web fonts, and icons. --> |
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
| <link rel="stylesheet" href="assets/css/easy-responsive-tabs.css"> |
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
| <script src="assets/js/easyResponsiveTabs.js"></script> | |
| <script> | |
| $(document).ready(function() { | |
| // Easy Responsive Tabs - http://webtrendset.com/demo/easy-responsive-tabs/ | |
| $('#tab-horizontal').easyResponsiveTabs({ // horizontal, vertical | |
| type: 'default', // Types: default, vertical, accordion | |
| width: 'auto', // auto or any width like 600px | |
| fit: true | |
| }); | |
| }); |
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
| <div id="tab-horizontal"> | |
| <ul class="resp-tabs-list"> | |
| <li>Tab 1</li> | |
| <li>Tab 2</li> | |
| <li>Tab 3</li> | |
| </ul> | |
| <div class="resp-tabs-container"> | |
| <div> | |
| <h2>Tab 1 Content</h2> | |
| <p>Insert tab content here.</p> |
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
| <div id="tab-vertical"> | |
| <ul class="resp-tabs-list"> | |
| <li>Tab 1</li> | |
| <li>Tab 2</li> | |
| <li>Tab 3</li> | |
| </ul> | |
| <div class="resp-tabs-container"> | |
| <div> | |
| <h2>Tab 1 Content</h2> | |
| <p>Insert tab content here.</p> |
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
| <link rel="stylesheet" href="assets/css/flexslider.css"> |
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
| <script src="assets/js/jquery.flexslider-min.js"></script> | |
| <script> | |
| $(document).ready(function() { | |
| // Flexslider responsive carousel - http://flexslider.woothemes.com/ | |
| if ($(".flexslider").length > 0) { | |
| $(".flexslider").flexslider({ | |
| animation: 'slide', | |
| animationLoop: true, | |
| slideshow: false, | |
| itemWidth: 320, |
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
| <div class="slider"> | |
| <div class="flexslider"> | |
| <ul class="slides"> | |
| <li><img src="assets/img/image-1.jpg"></li> | |
| <li><img src="assets/img/image-2.jpg"></li> | |
| <li><img src="assets/img/image-3.jpg"></li> | |
| <li><img src="assets/img/image-4.jpg"></li> | |
| <li><img src="assets/img/image-5.jpg"></li> | |
| </ul> | |
| </div> |
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
| <link rel="stylesheet" href="assets/css/responsive-tables.css"> |