Last active
May 18, 2016 11:41
-
-
Save JonasEriksson/770d267bc68229f342a2980bf195a2f6 to your computer and use it in GitHub Desktop.
Displays three images in line filling the screen width. Useful to showcase products or services or as a very simple gallery.
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
| <cfoutput> | |
| <section id="gallery" class="container-fluid"> | |
| <!-- Photos --> | |
| <div class="row no-gutter"> | |
| <div class="col-md-4 portfolio-item"> | |
| <div class="material-placeholder"><img class="materialboxed center-block responsive-img wow fadeIn initialized" src="#$.siteConfig('themeAssetPath')#/images/gallery/g1.jpg" style="visibility: visible; animation: fadeIn; -webkit-animation: fadeIn;"></div> | |
| </div> | |
| <div class="col-md-4 portfolio-item"> | |
| <div class="material-placeholder" style=""><img class="materialboxed center-block responsive-img wow fadeIn initialized" data-wow-delay="0.2s" src="#$.siteConfig('themeAssetPath')#/images/gallery/g2.jpg" style="visibility: visible; animation: fadeIn 0.2s; -webkit-animation: fadeIn 0.2s;"></div> | |
| </div> | |
| <div class="col-md-4 portfolio-item"> | |
| <div class="material-placeholder"><img class="materialboxed center-block responsive-img wow fadeIn initialized" data-wow-delay="0.4s" src="#$.siteConfig('themeAssetPath')#/images/gallery/g3.jpg" style="visibility: visible; animation: fadeIn 0.4s; -webkit-animation: fadeIn 0.4s;"></div> | |
| </div> | |
| </div> | |
| <!-- / Photos --> | |
| </section> | |
| </cfoutput> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment