graphonline/tpl/graphs_examples.php
2024-10-10 20:17:45 +02:00

31 lines
754 B
PHP
Executable File

<?php
include ("backend/saveGraphHelpers.php");
?>
<h1><?= L('head_no_tags')?></h1>
<p><?= L('text')?></p>
<div>
<?php for ($i = 0; $i < count($examples); $i++): ?>
<?php if ($i % 3 == 0): ?>
<div class="row">
<?php endif ?>
<div class="col-md-4">
<div class="thumbnail">
<a href="./?graph=<?= $examples[$i]["id"] ?>">
<img src="/<?php echo (getImageFileName($examples[$i]["id"], true)); ?>" alt="<?= $examples[$i]["title_" . $g_lang["current_language"]] ?>" style="width:100%">
<div class="caption">
<p><?= $examples[$i]["title_" . $g_lang["current_language"]] ?></p>
</div>
</a>
</div>
</div>
<?php if ($i % 3 == 2): ?>
</div>
<?php endif ?>
<?php endfor; ?>
</div>