Exemple #1
0
        <div class="clearfix"></div>
        <p class="lead">
            <br />
            We want to make sure that you have the best tools at your disposal as your business continues to grow.  Here's a few of the outstanding integrations we offer.

        </p>
    </div>
</section>
<section id="integration" class="integration">
    <div class="container">
        <div class="integration-row">
            <div class="col-sm-12">
                <div class="box-list isotope-active isotope">

                    <?php 
foreach ($site->integrationCategories() as $c => $category) {
    $isCategory = false;
    foreach ($site->integrationPartners() as $i => $integrate) {
        if ($category == $integrate['category']) {
            if ($isCategory == false) {
                $isCategory = true;
            }
            if ($integrate['url'] == '#') {
                $ext = '/';
            } else {
                $ext = '.php';
            }
            ?>

                                <div class="box-tile <?php 
            echo substr($category, 0, 4);