mirror of
https://github.com/php/web-php.git
synced 2026-03-24 07:12:16 +01:00
31 lines
975 B
PHP
31 lines
975 B
PHP
<?php
|
|
// $Id$
|
|
$_SERVER['BASE_PAGE'] = 'conferences/index.php';
|
|
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
|
|
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/pregen-events.inc';
|
|
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/pregen-news.inc';
|
|
|
|
|
|
$layout_workaround = <<< EOT
|
|
<div id="conferencesSidebar">
|
|
<div id="contact">
|
|
<p>
|
|
Are you planning a PHP related conference and want it listed here?
|
|
<a href="mailto:php-webmaster@lists.php.net">Let us know.</a>
|
|
</p>
|
|
</div>
|
|
$RSIDEBAR_DATA
|
|
</div>
|
|
EOT;
|
|
|
|
unset($RSIDEBAR_DATA);
|
|
|
|
site_header("PHP Conferences around the world", array("layout_workaround" => $layout_workaround, 'headtags' => '<link rel="alternate" type="application/atom+xml" title="PHP: Conference announcements" href="' . $MYSITE . 'feed.atom" />'));
|
|
|
|
print_news($NEWS_ENTRIES, array("conferences", "cfp"), 10);
|
|
|
|
site_footer(
|
|
array("atom" => "/feed.atom") // Add a link to the feed
|
|
);
|
|
|