Oppaitime's version of Gazelle
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.

chat.php 754B

12345678910111213141516171819202122232425262728
  1. <?
  2. //Include the header
  3. View::show_header('Chat Rules');
  4. ?>
  5. <!-- Forum Rules -->
  6. <div class="thin">
  7. <div class="box pad" style="padding: 10px 10px 10px 20px;">
  8. <p>Anything not allowed on the forums is also not allowed on IRC and vice versa. They are separated for convenience only.</p>
  9. </div>
  10. <br />
  11. <h3 id="forums">Forum Rules</h3>
  12. <div class="box pad rule_summary" style="padding: 10px 10px 10px 20px;">
  13. <? Rules::display_forum_rules() ?>
  14. </div>
  15. </div>
  16. <!-- END Forum Rules -->
  17. <!-- IRC Rules -->
  18. <div class="thin">
  19. <h3 id="irc">IRC Rules</h3>
  20. <div class="box pad rule_summary" style="padding: 10px 10px 10px 20px;">
  21. <? Rules::display_irc_chat_rules() ?>
  22. </div>
  23. <? include('jump.php'); ?>
  24. </div>
  25. <?
  26. View::show_footer();
  27. ?>