root/trunk/website/news.php

Revision 4518, 0.9 kB (checked in by erijo, 2 years ago)

- Moved all converters to the converters subdir
- Removed hostname from the links in the menu (to work on mirrors)
- Added www.se.licq.org as a mirror
- svn:keywords and svn:executable removed from most files
- CVS to SVN and sf.net to trac changes
- Some other small changes

  • Property svn:eol-style set to native
Line 
1<?
2  include "header.php";
3  include "archive.php";
4
5$news_action = $_REQUEST['news_action'];
6    if ( empty( $news_action ) ) $news_action = "show_archive";
7?>
8     
9      <div id="content" >
10
11                <div id="main"><img src="images/main_title_news.gif" alt="News" /></div>
12        <div id="maincontent">
13          <div id="subcontent">
14           
15            <p>Check out the <a href="CHANGELOG">CHANGELOG</a> for a more detailed list of what has changed.</p>
16
17
18<?
19  echo "<P>";
20  switch ($news_action)
21  {
22    case "show_latest": 
23        news_show_latest(); 
24        break;
25    case "show_archive": news_show_archive(); break;
26    case "show_item": news_show_single_item(); break;
27  }
28  echo "</P>";
29?>
30
31          </div>
32        </div>
33
34        <div id="mainfooter"><p id="mainfooter_left"></p><!-- <img src="images/main_bg_bottomleft.gif" border="0" alt="Main" /> --></div>
35
36            </div>
37
38<? include "footer.php" ?>
Note: See TracBrowser for help on using the browser.