diff options
author | pb1dft <pb1dft@ampache> | 2006-10-27 03:54:53 +0000 |
---|---|---|
committer | pb1dft <pb1dft@ampache> | 2006-10-27 03:54:53 +0000 |
commit | d6e50fd701008d2b8cfa5ecb827ae0880c91b500 (patch) | |
tree | f12837dd5edae5be950ede7a0f8348c6cd38a671 /templates/header.inc | |
parent | bafe4061a549b3c792ce4c327bc0acf98952cec4 (diff) | |
download | ampache-d6e50fd701008d2b8cfa5ecb827ae0880c91b500.tar.gz ampache-d6e50fd701008d2b8cfa5ecb827ae0880c91b500.tar.bz2 ampache-d6e50fd701008d2b8cfa5ecb827ae0880c91b500.zip |
Reworked RSS and fixed mail statistics
Diffstat (limited to 'templates/header.inc')
-rw-r--r-- | templates/header.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/header.inc b/templates/header.inc index 2fbf47bc..7dce86b9 100644 --- a/templates/header.inc +++ b/templates/header.inc @@ -31,6 +31,11 @@ $location = get_location(); <?php if (conf('use_rss')) { ?> <link rel="alternate" type="application/rss+xml" title="<?php echo conf('rss_main_title'); ?>" href="<?php echo $web_path; ?>/rss.php" /> +<link rel="alternate" type="application/rss+xml" title="Ampache Latest Artists Additions" href="<?php echo $web_path; ?>/rss.php?type=latestartist" /> +<link rel="alternate" type="application/rss+xml" title="Ampache Latest Albums Additions" href="<?php echo $web_path; ?>/rss.php?type=latestalbum" /> +<link rel="alternate" type="application/rss+xml" title="Ampache Most Popular Albums" href="<?php echo $web_path; ?>/rss.php?type=popularalbum" /> +<link rel="alternate" type="application/rss+xml" title="Ampache Most Popular Artists" href="<?php echo $web_path; ?>/rss.php?type=popularalbum" /> +<link rel="alternate" type="application/rss+xml" title="Ampache Most Popular Songs" href="<?php echo $web_path; ?>/rss.php?type=popularsong" /> <?php } ?> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo conf('site_charset'); ?>" /> <title><?php echo conf('site_title'); ?> - <?php echo $location['title']; ?></title> |