mirror of
https://github.com/php/web-php.git
synced 2026-03-23 23:02:13 +01:00
23 lines
456 B
PHP
23 lines
456 B
PHP
<?php
|
|
|
|
use phpweb\News\NewsHandler;
|
|
|
|
$_SERVER['BASE_PAGE'] = 'archive/2025.php';
|
|
include_once __DIR__ . '/../include/prepend.inc';
|
|
news_archive_sidebar();
|
|
site_header("News Archive - 2025");
|
|
?>
|
|
|
|
<h1>News Archive - 2025</h1>
|
|
|
|
<p>
|
|
Here are the most important news items we have published in 2025 on PHP.net.
|
|
</p>
|
|
|
|
<hr>
|
|
|
|
<?php
|
|
|
|
print_news((new NewsHandler())->getNewsByYear(2025), null, 500);
|
|
site_footer(['elephpants' => true, 'sidebar' => $SIDEBAR_DATA]);
|