mirror of https://github.com/BOINC/boinc.git
24 lines
418 B
PHP
24 lines
418 B
PHP
<?php
|
|
|
|
// each news item is an array:
|
|
// 0: date
|
|
// 1: content
|
|
// 2: title (optional)
|
|
// 3: category (optional)
|
|
// suggested values:
|
|
// "server status"
|
|
// "news"
|
|
// "emergency"
|
|
$project_news = array(
|
|
array("March 1, 2004",
|
|
"Sample news item",
|
|
"Sample news item title"
|
|
),
|
|
array("March 2, 2004",
|
|
"Another item",
|
|
"Another item title"
|
|
)
|
|
);
|
|
|
|
?>
|