<?php include("header.html"); ?>

<!-- Gallery Page Content -->
<div class="container">
    <?php
    $categories = array('dragons', 'flexis', 'dice towers', 'wine bottle holders', 'other');
    foreach ($categories as $category) { ?>
        <div class='category'>
            <h2><?= ucfirst($category) ?></h2>
            <?php
            $lines = file($category . "/description.txt", FILE_IGNORE_NEW_LINES);
            for ($i = 0; $i < count($lines); $i += 4) { ?>
                <div class='item'>
                    <h3><?= $lines[$i] ?></h3>
                    <div class='item-content'>
                        <a href="<?= $category . "/" . $lines[$i+1] ?>" target='_blank'>
                            <img src="<?= $category . "/" . $lines[$i+1] ?>" alt="<?= $lines[$i] ?>">
                        </a>
                        <div class='description'><?= $lines[$i+2] ?></div>
                    </div>
                    <div class='price'>Price: $<?= $lines[$i+3] ?></div>
                </div>
            <?php } ?>
        </div>
    <?php } ?>
</div>

<?php include("footer.html"); ?>
