two-column-detail.php
TLDR
This file contains a PHP snippet that generates a two-column layout with some dynamic content.
Classes
There are no classes in this file.
Methods
There are no methods in this file.
<div class="flex mx-2 max-w-150">
<span>
<?php echo htmlspecialchars($first) ?>
</span>
<span class="flex-1 content-repeat-[.] text-gray ml-1"></span>
<?php if ($second !== '') { ?>
<span class="ml-1">
<?php echo htmlspecialchars($second) ?>
</span>
<?php } ?>
</div>