|
Revision 4124, 1.7 kB
(checked in by emostar, 4 years ago)
|
|
Initial revision
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | <? |
|---|
| 2 | include "header.php"; |
|---|
| 3 | include "archive.php"; |
|---|
| 4 | |
|---|
| 5 | if (file_exists("/home/groups/l/li/licq/htdocs/zorbstats/zorblogs.php")) |
|---|
| 6 | include("/home/groups/l/li/licq/htdocs/zorbstats/zorblogs.php"); |
|---|
| 7 | if (file_exists("/home/groups/l/li/licq/htdocs/zorbstats/zorblogspages.php")) |
|---|
| 8 | { |
|---|
| 9 | include ("/home/groups/l/li/licq/htdocs/zorbstats/zorblogspages.php"); |
|---|
| 10 | $pagename = substr($PHP_SELF, 1); |
|---|
| 11 | $dispname = substr($PHP_SELF, 1, -4); |
|---|
| 12 | countpage($pagename, $dispname); |
|---|
| 13 | } |
|---|
| 14 | ?> |
|---|
| 15 | |
|---|
| 16 | <div id="content" > |
|---|
| 17 | |
|---|
| 18 | <div id="main"><img src="images/main_title_main.gif" alt="Main" /></div> |
|---|
| 19 | <div id="maincontent"> |
|---|
| 20 | <div id="subcontent"> |
|---|
| 21 | <h2>Welcome to the Licq homepage.</h2> |
|---|
| 22 | <p>Latest Update: <b>May 29, 2005</b><br />Stable Version: <b>1.3.0</b><br />Devel Version: <b>1.3.1</b></p> |
|---|
| 23 | |
|---|
| 24 | <a href="http://sourceforge.net/donate/index.php?group_id=254"><img src="http://images.sourceforge.net/images/project-support.jpg" width="88" height="32" border="0" alt="Support This Project" /> </a> |
|---|
| 25 | <? |
|---|
| 26 | require_once('rss_fetch.inc'); |
|---|
| 27 | $rss = fetch_rss("http://sourceforge.net/export/rss2_projdonors.php?group_id=254"); |
|---|
| 28 | echo "Latest donors: "; |
|---|
| 29 | if ($rss->items) |
|---|
| 30 | { |
|---|
| 31 | foreach ($rss->items as $item) |
|---|
| 32 | { |
|---|
| 33 | $title = $item['title']; |
|---|
| 34 | $desc = $item['description']; |
|---|
| 35 | echo $title; |
|---|
| 36 | if ($desc) |
|---|
| 37 | echo "(<i>" . $desc . "</i>)"; |
|---|
| 38 | echo ", "; |
|---|
| 39 | } |
|---|
| 40 | } |
|---|
| 41 | else |
|---|
| 42 | echo $rss->channel['description']; |
|---|
| 43 | |
|---|
| 44 | news_show_latest(); |
|---|
| 45 | ?> |
|---|
| 46 | |
|---|
| 47 | </div> |
|---|
| 48 | </div> |
|---|
| 49 | |
|---|
| 50 | |
|---|
| 51 | <div id="mainfooter"><p id="mainfooter_left"></p><!-- <img src="images/main_bg_bottomleft.gif" border="0" alt="Main" /> --></div> |
|---|
| 52 | |
|---|
| 53 | </div> |
|---|
| 54 | |
|---|
| 55 | <? include "footer.php" ?> |
|---|