]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/tips/add_chatterbox_to_blog.mdwn
(no commit message)
[ikiwiki.git] / doc / tips / add_chatterbox_to_blog.mdwn
index ee5ead64b40cf9915b022b302c6946b16b0418b4..e07e36b07805e6545bafce3a88f48ca621273ce0 100644 (file)
@@ -6,15 +6,19 @@ from there, like I have on [my blog](http://kitenet.net/~joey/blog/)
 * Enable the [[plugins/aggregate]] plugin, and set up a cron
   job for it.
 * At the top of your blog's page, add something like the following.
-  You'll want to change the urls of course.
+  You'll want to change the urls of course. Be sure to also change
+  the inline directive's [[PageSpec]] to link to the location the
+  feed is aggregated to, which will be a subpage of the page
+  you put this on (blog in this example):
 
        \[[!template id=note text="""  
        \[[!aggregate expirecount=5 name="dents" url="http://identi.ca/joeyh"  
        feedurl="http://identi.ca/api/statuses/user_timeline/joeyh.atom"]]  
-       \[[!inline pages="internal(dents/*)" archive=yes show=5 feeds=no]]  
+       \[[!inline pages="internal(./blog/dents/*)" template=microblog
+       show=5 feeds=no]]
        """]]
 
-For a cleaner look without the post dates, add `template=titlepage`
-to the `inline` directive.
+* To filter out `@-replies`, append "and !*@*" to the [[ikiwiki/PageSpec]].
+  The same technique can be used for other filtering.
 
 Note: Works best with ikiwiki 3.10 or better.