mirror of
https://github.com/OPSnet/interview.git
synced 2026-01-17 02:04:29 -05:00
18 lines
404 B
PHP
18 lines
404 B
PHP
<?
|
|
|
|
$SITENAME = "Orpheus";
|
|
$interviewchan = "#recruitment";
|
|
|
|
function newstop() {
|
|
print("<div class=\"main_column\">");
|
|
}
|
|
|
|
function newsbox($heading = '', $text = '') {
|
|
print("<div class=\"box news_post\"><div class=\"head\"><strong>" . ($heading ? "$heading" : "") . "</strong></div><div class=\"pad\">" . ($text ? "$text" : "") . "</div></div>\n");
|
|
}
|
|
|
|
function newsbot() {
|
|
print("</div>");
|
|
}
|
|
|
|
?>
|