1
0
mirror of https://github.com/php/web-php.git synced 2026-03-31 11:42:09 +02:00
Files
archived-web-php/archive/2008.php
Hannes Magnusson e33d3df629 - Simplify the "news system"
- Initial implementation of the hAtom microformat
2008-03-18 14:26:30 +00:00

24 lines
606 B
PHP

<?php
// $Id$
$_SERVER['BASE_PAGE'] = 'archive/2008.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/pregen-news.inc';
news_archive_sidebar();
site_header("News Archive - 2008");
?>
<h1>News Archive - 2008</h1>
<p>
Here are the most important news items we have published in 2008 on PHP.net.
</p>
<hr />
<?php
print_news($NEWS_ENTRIES, array("conferences", "cfp", "frontpage"), 50);
/* %s/<a href="\(.*\)"><img src="\/images\/news\/\(.*\)" alt="\(.*\)" width.*><\/a>/<?php news_image("\1", "\2", "\3"); ?>/g */
site_footer();