| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- $path = 'assets/img/SmartIdentify.svg';
- $box = array(
- 'SmartIdentify' => array('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. ',
- $path),
- 'SmartLabel' => array('Aenean commodo ligula eget dolor. Aenean massa.',
- $path),
- 'SmartPackage' => array('Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.',
- $path),
- 'EasyDGD' => array('Cconsectetuer adipiscing elit.',
- $path),
- 'BatteryGuide' => array('Lorem ipsum dolor sit amet, consectetuer adipiscing elit.',
- $path),
- 'ADR-Check' => array('Lorem ipsum dolor sit amet, consectetuer adipiscing elit.',
- $path)
-
- )
- ?>
-
- <div class="container">
- <h2 class="ch-ggs-web-suite-landing-section-title">Die Tools der HazmatSuite auf einen Blick</h2>
- <p class="lead">Starten Sie jetzt durch mit der HazmatSuite! So schnell und effizient haben Sie noch nie mit Gefahrstoffen und Gefahrgut gearbeitet. Sparen Sie nicht nur Zeit, sondern auch Nerven für die Suche nach passender Software.</p>
- <div class="ch-ggs-web-suite-card-hover-group">
- <div class="row ch-ggs-web-suite-card-hover-holder">
- <?php foreach ($box as $key => $value): ?>
- <div class="col-md-6 col-lg-4 d-flex">
- <a href="<?php echo ($key === 'SmartIdentify' ? 'index-smartify.php' : '#') ?>" class="ch-ggs-web-suite-card-hover">
- <div class="ch-ggs-web-suite-card-hover-main">
- <img src="<?php echo $value[1] ?>" class="img-fluid ch-ggs-web-suite-card-hover-logo" alt="Tool Logo Name">
- <h2 class="ch-ggs-web-suite-card-hover-title sr-only">
- <?php echo $key ?>
- </h2>
- <p class="ch-ggs-web-suite-card-hover-text"><?php echo $value[0] ?></p>
- <div class="btn btn-block btn-iconed btn-iconed-primary ch-ggs-web-suite-card-hover-link">Zum Tool <i aria-hidden="true" class="btn-icon ifc ifc-arrow-right"></i></div>
- </div>
- </a>
- </div>
- <?php endforeach; ?>
- </div>
- </div>
- </div>
|