1
0
mirror of https://github.com/php/web-php.git synced 2026-03-24 07:12:16 +01:00
Files
archived-web-php/archive/2024.php
2024-01-06 16:02:55 +03:00

22 lines
459 B
PHP

<?php
$_SERVER['BASE_PAGE'] = 'archive/2024.php';
include_once __DIR__ . '/../include/prepend.inc';
include_once __DIR__ . '/../include/pregen-news.inc';
news_archive_sidebar();
site_header("News Archive - 2024");
?>
<h1>News Archive - 2024</h1>
<p>
Here are the most important news items we have published in 2024 on PHP.net.
</p>
<hr>
<?php
print_news($NEWS_ENTRIES, null, 500, 2024);
site_footer(['elephpants' => true, 'sidebar' => $SIDEBAR_DATA]);