UNPKG

patternfly

Version:

This reference implementation of PatternFly is based on [Bootstrap v3](http://getbootstrap.com/). Think of PatternFly as a "skinned" version of Bootstrap with additional components and customizations.

26 lines (25 loc) 1.05 kB
--- categories: [Layouts] css-extra: false layout: cards resource: true title: Cards full-page: true url-js-extra: ['//cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.0/jquery.matchHeight-min.js', '//cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js', '//cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js'] weight: 8 --- {% include widgets/layouts/navbar-primary.html %} <div class="container-fluid container-cards-pf"> {% include widgets/layouts/cards.html %} </div><!-- /container --> <script> $(function() { // matchHeight the contents of each .card-pf and then the .card-pf itself $(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight(); $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight(); $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight(); $(".row-cards-pf > [class*='col'] > .card-pf").matchHeight(); // initialize tooltips $('[data-toggle="tooltip"]').tooltip(); }); </script>