diff --git a/Panda/View/Control/Helper.hs b/Panda/View/Control/Helper.hs
--- a/Panda/View/Control/Helper.hs
+++ b/Panda/View/Control/Helper.hs
@@ -13,12 +13,12 @@
   ]
   
 nav_previous p r = if p.Pager.has_previous 
-  then toHtml $ hotlink ( G.root ++ r' ++ "page=" ++ p.Pager.previous.show ) << previous_sign
+  then toHtml $ hotlink ( r' ++ "page=" ++ p.Pager.previous.show ) << previous_sign
   else spaceHtml
   where r' = if isSuffixOf "&" r then r else r ++ "?"
     
 nav_next p r = if p.Pager.has_next
-  then toHtml $ hotlink ( G.root ++ r' ++ "page=" ++ p.Pager.next.show ) << next_sign
+  then toHtml $ hotlink ( r' ++ "page=" ++ p.Pager.next.show ) << next_sign
   else spaceHtml
   where r' = if isSuffixOf "&" r then r else r ++ "?"
 
diff --git a/Panda/View/Widget/Head.hs b/Panda/View/Widget/Head.hs
--- a/Panda/View/Widget/Head.hs
+++ b/Panda/View/Widget/Head.hs
@@ -6,10 +6,10 @@
 import Panda.Type.Theme hiding (header)
 import qualified Panda.Type.State as S
 
-html_head state = header << ([meta_tag, title_tag state, favicon_tag, rss_tag] ++ G.theme.css.map css_link ++ G.theme.js.map js_link )
+html_head state = header << ([meta_tag, title_tag state, favicon_tag, rss_tag state] ++ G.theme.css.map css_link ++ G.theme.js.map js_link )
 
 title_tag state = thetitle << [G.blog_title ++ state.S.resource_title.format_title]
-rss_tag    = rss_link "rss.xml"
+rss_tag state   = rss_link $ G.root / state.S.uid / "rss.xml"
 favicon_tag = favicon_link G.favicon
 
 format_title [] = ""
diff --git a/changelog.markdown b/changelog.markdown
--- a/changelog.markdown
+++ b/changelog.markdown
@@ -1,3 +1,12 @@
+2008.10.14
+----------
+
+### Fix
+
+* RSS link in header
+* pagination link
+
+
 2008.10.13
 -----------
 
diff --git a/panda.cabal b/panda.cabal
--- a/panda.cabal
+++ b/panda.cabal
@@ -1,5 +1,5 @@
 Name:                 panda
-Version:              2008.10.13
+Version:              2008.10.14
 Build-type:           Simple
 Synopsis:             A simple static blog engine
 Description:          A simple static blog engine
