TrustedPlaces     refinance your mortgage

export

Now you can export to your website or blog list of your latest books or list of popular books, or any other list that is available in RSS on this site.

Here's how to do this:

Add this piece of code to your website / blog template:

<script language="JavaScript"
 src="http://reader2.com/rss/user/kuchin/?type=js&limit=5" 
type="text/javascript"></script>

Where you should replace 'kuchin' by your username if you want to get list of your books, not mine :)

Actually, as you can see, you just take any RSS link on this site and add

?type=js&limit=5
part where 'limit' parameter can control number of items shown.

If you want to control how it will look on your site, this is how it looks like:

<div class="books">
<p class="books_title"><a href="http://reader2.com/kuchin"
 title="Latest books added by kuchin to Reader2" 
 target="_blank">Reader²/kuchin</a></p>
<ul class="books_items">
<li><a href="..." title="..." target="_blank">The Big Moo</a></li>
</ul></div>

So you just need to add styles to those element classes and subclasses.
For example, something like this:

<style>
.books {
  border: 1px solid #000;
  width: 15em;
  }
.books_title {
  text-align: center;
  }
.books_items {
  list-style-type: none;
  margin: 1em;
  }
.books_items li a:hover {
  background-color: #CCC;
  }
</style>

New:
If you want to see images, add images=1 parameter to the request.