A lightweight forum engine written in PHP. Repository is now obsolete and read-only. http://www.pioder.pl/uforum.html
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.6 KiB

  1. <!-- pool of "<?= $skin['forum_name']; ?>" -->
  2. <div id="forum_<?= $skin['forum_id']; ?>" style="height:40px;">
  3. <div style="width: <?= (0.7*(TABLES_WIDTH-10)); ?>; float: left; height: 100%; display: table-cell; vertical-align: middle" class="forum_item">
  4. <a href="forum.php?f=<?= $skin['forum_id']; ?>" class="sect"><?= $skin['forum_name']; ?></a><br>
  5. <span class="desc"><?=$skin['description']; ?></span>
  6. </div>
  7. <div style="width: <?= (0.07*(TABLES_WIDTH-10)); ?>; float: left; height: 100%;" class="forum_item">
  8. <span style="text-align: center" class="fstandard"><b><?= $skin['posts']; ?></b></span>
  9. </div>
  10. <div style="width: <?= (0.19*(TABLES_WIDTH-10)); ?>; float: left; height: 100%;" class="forum_item">
  11. <?= $skin['lastpost']; ?>
  12. </div>
  13. </div>
  14. <!--
  15. <tr>
  16. <td class="fitem" width="30" height="30" align="center" valign="center" onMouseOver="set_color(this);" onMouseOut="unset_color(this);">
  17. <td width="565" height="1" class="fitem" onMouseOver="set_color(this);" onMouseOut="unset_color(this);">
  18. <a href="forum.php?f=<? echo $skin['forum_id']; ?>" class="sect"><? echo $skin['forum_name']; ?></a><br>
  19. <span class="desc"><? echo $skin['description']; ?></span>
  20. </td>
  21. <td width="48" height="1" class="fitem" onMouseOver="set_color(this);" onMouseOut="unset_color(this);">
  22. <span style="text-align: center" class="fstandard"><b><? echo $skin['posts']; ?></b></span>
  23. </td>
  24. <td width="129" height="1" class="fitem" onMouseOver="set_color(this);" onMouseOut="unset_color(this);">
  25. <? echo $skin['lastpost']; ?>
  26. </td>
  27. </tr>
  28. -->