Source code of Leftypol imageboard
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.
 
 
 
 
 

25 lines
492 B

<?php
// Generates a <ul> element with a list of linked
// boards and their subtitles.
function ulBoards() {
$body = '<ul>';
// List of boards
$boards = listBoards();
foreach($boards as &$b) {
$body .= '<li>' .
'<a href="?/' .
sprintf(BOARD_PATH, $b['uri']) . FILE_INDEX .
'">' .
sprintf(BOARD_ABBREVIATION, $b['uri']) .
'</a>' .
(isset($b['subtitle']) ? ' - ' . $b['subtitle'] : '') .
'</li>';
}
return $body . '</ul>';
}
?>