<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>tanzaku</title>
	<atom:link href="http://www.tripleships.com/sample/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.tripleships.com/sample</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 31 May 2010 08:04:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tanzaku v1.1解説</title>
		<link>http://www.tripleships.com/sample/?p=321</link>
		<comments>http://www.tripleships.com/sample/?p=321#comments</comments>
		<pubDate>Fri, 28 May 2010 13:30:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://www.tripleships.com/sample/?p=321</guid>
		<description><![CDATA[カスタマイズをする上での参考情報です。
以下、Tanzakuバージョン1.1、WPバージョン2.9 を元に解説します。
*The trouble of One post was corrected.
*投稿数が1つの場合、内容が反映されない不具合を修正しました。

グリッドカラムの上限倍幅を指定する
＜編集箇所：index.php＞
[grid column setting]の箇所の、$max_colを変更します。1を指定すると、グリッドがすべて最小幅で表示されるようになります。3を指定すると、最大で3倍幅までグリッドが拡張されます。幅はグリッド内のコンテンツ（画像、ビデオ等）の大きさによって変化します。
$max_col = 2; // max column size (style div.x1 ~ xN)
グリッドのカラム幅、パディング・マージン等の数値を調節する
＜編集箇所：style.css＞
&#8220;Grid Items, Single Item and Comments&#8221;の箇所、div.x1からの箇所を変更します。
div.x1 { width:  290px; }
div.x2 { width:  615px; }
div.x3 { width:  940px; }
div.x4 { width: 1265px; }
カラム幅の倍数Nに対して「(幅 × N) + ギャップ幅 × (N &#8211; 1) 」の式で数値を求めます。ギャップ幅はパディング、マージン（もしあればボーダーも）の横幅に影響する数値を合算して指定します。ギャップ幅は下記のスタイルが関係します。
div.grid-item,
div.single-item {
	overflow: hidden;
	margin: [...]]]></description>
			<content:encoded><![CDATA[<p>カスタマイズをする上での参考情報です。<br />
以下、Tanzakuバージョン1.1、WPバージョン2.9 を元に解説します。</p>
<p>*The trouble of One post was corrected.<br />
*投稿数が1つの場合、内容が反映されない不具合を修正しました。</p>
<p><span id="more-321"></span></p>
<h3>グリッドカラムの上限倍幅を指定する</h3>
<p>＜編集箇所：index.php＞</p>
<p>[grid column setting]の箇所の、$max_colを変更します。1を指定すると、グリッドがすべて最小幅で表示されるようになります。3を指定すると、最大で3倍幅までグリッドが拡張されます。幅はグリッド内のコンテンツ（画像、ビデオ等）の大きさによって変化します。</p>
<pre><code><strong>$max_col</strong> = 2; // max column size (style div.x1 ~ xN)</code></pre>
<h3>グリッドのカラム幅、パディング・マージン等の数値を調節する</h3>
<p>＜編集箇所：style.css＞</p>
<p>&#8220;Grid Items, Single Item and Comments&#8221;の箇所、div.x1からの箇所を変更します。</p>
<pre><code><strong>div.x1</strong> { width:  290px; }
<strong>div.x2</strong> { width:  615px; }
<strong>div.x3</strong> { width:  940px; }
<strong>div.x4</strong> { width: 1265px; }</code></pre>
<p>カラム幅の倍数Nに対して「(幅 × N) + ギャップ幅 × (N &#8211; 1) 」の式で数値を求めます。ギャップ幅はパディング、マージン（もしあればボーダーも）の横幅に影響する数値を合算して指定します。ギャップ幅は下記のスタイルが関係します。</p>
<pre><code><strong>div.grid-item</strong>,
div.single-item {
	overflow: hidden;
	margin: 0 <strong>5px</strong> 5px <strong>0</strong>;
	padding: 15px <strong>15px</strong> 30px <strong>15px</strong>;
	border: 0;
	background-color: #7b7f8b;
}</code></pre>
<p>このほか、画面下部に配置されるサイドバー２（#sidebar2 li.widget）の調整も考慮してください。</p>
<p>＜編集箇所：index.php＞</p>
<p>[grid column setting]の箇所の、$col_w（カラム幅）, $gap_w（ギャップ幅）を変更します。</p>
<pre><code><strong>$col_w</strong> = 290; // width of grid column
<strong>$gap_w</strong> = 35;  // padding + margin-right (15+15+5)</code></pre>
<p>＜編集箇所：header.php＞</p>
<p>Javascriptコードの gridDefWidth に、index.phpで指定した$col_w, $gap_wの合計値を指定します。</p>
<pre><code><strong>gridDefWidth</strong>: 290 + 15 + 15 + 5,</code></pre>
<h3>moreタグによる遷移先ページでの余計な移動を無効にする</h3>
<p>moreタグによって生成されるリンク（本テーマでは &#8220;Details »&#8221;表示）にはフラグメント（#記号）が通常含まれているため、それをクリックするとクリック先の該当箇所に瞬時に移動してしまい、詳細ページのアニメーション効果が中途半端になってしまいます。この現象の修正に次のプラグインの導入をおすすめします。</p>
<blockquote><p>WordPressのmoreタグを変更するプラグイン MoreLink#Remove<br />
<a href="http://debeso.com/blog/2008/12/wordpress/morelinksharpremove/">http://debeso.com/blog/2008/12/wordpress/morelinksharpremove/</a></p></blockquote>
<h3>画像にポップアップ系効果を追加する</h3>
<p><a href="http://wordpress.org/extend/plugins/lightbox-2/">Lightbox2プラグイン</a>など、画像をポップアップ化するプラグインと併用できます。サムネイル画像に対して画像リンクが張られていれば、これらのプラグインを利用してポップアップ表示が可能になります。ただしメインインデックスで各グリッドに１つだけ表示される画像には、詳細ページへのリンクが強制的に張られます（画像へのリンクがあっても削除されます）。そのためメインインデックスのグリッド内の画像もポップアップ化するには下記の指定を変更します。</p>
<p>＜編集箇所：index.php＞</p>
<p>[grid image link setting]の箇所、$flg_img_forcelinkをfalseに変更します。</p>
<pre><code><strong>$flg_img_forcelink</strong> = false;   // add/overwrite a link which links to a single post (permalink).</code></pre>
<h3>投稿でのサムネイルの埋め込み方</h3>
<p>投稿エディタで画像を挿入する際に、下のほうの「リンクURL」と「サイズ」を確認します。リンクURLには「ファイルのURL」ボタンを押してオリジナルサイズの画像へのリンクを貼り、サイズに「サムネイル」「中サイズ」など小さめのサイズを選択します。</p>
<p><a href="http://www.tripleships.com/sample/wp-content/uploads/2010/03/screenshot_08_linkURL.jpg"><img class="alignnone size-medium wp-image-331" title="WP投稿エディタ（画像を追加）" src="http://www.tripleships.com/sample/wp-content/uploads/2010/03/screenshot_08_linkURL-500x151.jpg" alt="WP投稿エディタ（画像を追加）" width="500" height="151" /></a></p>
<p>WPの管理画面＞メディア設定画面でサムネイル画像の設定ができます。ここのサイズをグリッドのカラム幅と合わせておいても良いかもしれません（ただし合わせてなくても、このテーマは自動的に画像サイズをグリッドにフィットさせます）。<br />
サムネイルの場合、「実寸法にトリミング」チェックボックスにチェックを入れておくと完全に縦横の画像サイズを固定化することもできます。グリッドを縦横に規則正しく整列させたい場合はこのオプションを利用すると良いでしょう。</p>
<p><a href="http://www.tripleships.com/sample/wp-content/uploads/2010/03/screenshot_09.jpg"><img class="alignnone size-medium wp-image-330" title="メディア設定画面" src="http://www.tripleships.com/sample/wp-content/uploads/2010/03/screenshot_09-500x301.jpg" alt="メディア設定画面" width="500" height="301" /></a></p>
<h3>詳細ページでサムネイル画像を大きく表示する</h3>
<p>＜編集箇所：index.php＞</p>
<p>[grid image link setting]の箇所、$flg_img_extractをtrueに変更します。最初のサムネイル画像に画像へのリンクが張られていれば、詳細ページでリンクを画像タグに展開して表示します。</p>
<pre><code><strong>$flg_img_extract</strong> = true;    // in single post page, extract thumbnail link to an original image.</code></pre>
<h3>ビデオを表示する</h3>
<p>Youtubeなど動画共有サイトのタグ埋め込み（obejctタグ）に対応しています。<br />
投稿エディタの「HTMLタブ」を開いてタグを貼りつけます。</p>
<p>また、WP2.9からの新機能では動画共有サイトのURLをじかに記述するだけでもビデオの埋め込み（objectタグへの変換）ができるようになっています。</p>
<h4>自前のサーバー内のビデオを表示する</h4>
<p>WPのメディアライブラリにアップロードしたビデオも挿入できます。投稿エディタ（ビジュアルタブ）を開き、ツールバーの右端「アドバンスとツールバー」ボタンを押してツールバーの２段目を表示します。その中の「埋め込みメディアの挿入」ボタンを使います。</p>
<p><a href="http://www.tripleships.com/sample/wp-content/uploads/2010/03/screenshot_07_pointer.jpg"><img class="alignnone size-medium wp-image-325" title="WP投稿エディタ（ツールバー：埋め込みメディアの挿入）" src="http://www.tripleships.com/sample/wp-content/uploads/2010/03/screenshot_07_pointer-499x113.jpg" alt="WP投稿エディタ（ツールバー：埋め込みメディアの挿入）" width="499" height="113" /></a></p>
<p>ビデオ埋め込み用プラグインも利用できます（<a href="http://wordpress.org/extend/plugins/embedded-video-with-link/">Embedded Videoプラグイン</a>で確認）。<br />
基本的にビデオ用に生成されるobjectタグやembedタグにwidth, height属性がセットされていればグリッドにフィットします。</p>
<h4>ビデオのグリッドへのフィット方法を変更する</h4>
<p>＜編集箇所：index.php＞</p>
<p>[grid image link setting]の箇所、$flg_obj_fitを変更します。&#8221;none&#8221;, &#8220;small-fit&#8221;, &#8220;large-fit&#8221;のいずれかを指定できます。それぞれ「フィットしない（サイズ無調整）」「小さめのグリッドにフィット」「大きめのグリッドにフィット」になります。</p>
<pre><code><strong>$flg_obj_fit</strong> = 'large-fit';  // none | small-fit | large-fit ... how to fit size of object tag.</code></pre>
<h3>メインページでコメント数を表示する</h3>
<p>＜編集箇所：index.php＞</p>
<p>113行目付近のPHP内のコメントを消して元に戻します。</p>
<pre><code>&lt;?php <strong>comments_popup_link();</strong> ?&gt;</code></pre>
<h3>投稿者名を表示する</h3>
<p>＜編集箇所：index.php＞</p>
<p>次のコードを113行目付近に追加します。</p>
<pre><code>Author: &lt;?php <strong>the_author()</strong>; ?&gt;&lt;br /&gt;</code></pre>
<h3>サイドバー２（下方領域）のデフォルト表示を消す。</h3>
<p>２番目のサイドバー領域に限り、何もウィジェットを設定してない場合にデフォルトの内容物を設定しています。これを「何もないときは何も出さない」ようにします。</p>
<p>＜編集箇所：sidebar-2.php＞</p>
<p>ifブロックの中身（中略の部分）をすべて削除するか、あるいは</p>
<pre><code>&lt;?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?&gt;
<strong>（中略 ここを削除）</strong>
&lt;?php endif; ?&gt;</code></pre>
<p>代わりにifブロックの中をさらにif(false)で囲います。</p>
<pre><code>&lt;?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(2) ) : ?&gt;
<strong>&lt;?php if (false) : ?&gt;</strong>
（中略）
<strong>&lt;?php endif; ?&gt;</strong>
&lt;?php endif; ?&gt;</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleships.com/sample/?feed=rss2&amp;p=321</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Title 1</title>
		<link>http://www.tripleships.com/sample/?p=21</link>
		<comments>http://www.tripleships.com/sample/?p=21#comments</comments>
		<pubDate>Mon, 01 Mar 2010 12:42:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://www.tripleships.com/sample/?p=21</guid>
		<description><![CDATA[




]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tripleships.com/sample/wp-content/uploads/2009/12/sample_05.jpg"><img class="alignnone size-full wp-image-245" title="sample_290" src="http://www.tripleships.com/sample/wp-content/uploads/2009/12/sample_2904.jpg" alt="sample_290" width="290" height="290" /></a></p>
<p><img class="alignnone size-medium wp-image-230" title="sample_01" src="http://www.tripleships.com/sample/wp-content/uploads/2009/12/sample_014.jpg" alt="sample_01"  width="600" height="600" /></p>
<p><img class="alignnone size-medium wp-image-232" title="sample_02" src="http://www.tripleships.com/sample/wp-content/uploads/2009/12/sample_028.jpg" alt="sample_02" /></p>
<p><img class="alignnone size-medium wp-image-243" title="sample_03" src="http://www.tripleships.com/sample/wp-content/uploads/2009/12/sample_033.jpg" alt="sample_03" /></p>
<p><img class="alignnone size-medium wp-image-219" title="sample_04" src="http://www.tripleships.com/sample/wp-content/uploads/2009/12/sample_041.jpg" alt="sample_04"  /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleships.com/sample/?feed=rss2&amp;p=21</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Vimeo</title>
		<link>http://www.tripleships.com/sample/?p=277</link>
		<comments>http://www.tripleships.com/sample/?p=277#comments</comments>
		<pubDate>Mon, 01 Mar 2010 06:54:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://www.tripleships.com/sample/?p=277</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=3278178&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=3278178&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleships.com/sample/?feed=rss2&amp;p=277</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Title 2</title>
		<link>http://www.tripleships.com/sample/?p=19</link>
		<comments>http://www.tripleships.com/sample/?p=19#comments</comments>
		<pubDate>Fri, 04 Dec 2009 03:41:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://www.tripleships.com/sample/?p=19</guid>
		<description><![CDATA[It’s necessary to have more people visit Miyakejima Island as tourists. If that’s not achieved I believe the motorcycle festival will not be able to continue for the long-term. The other day before the event’s opening I climbed the island’s Oyama Mountain with motorcycle experts and asked them about the requirements needed to hold a [...]]]></description>
			<content:encoded><![CDATA[<p>It’s necessary to have more people visit Miyakejima Island as tourists. If that’s not achieved I believe the motorcycle festival will not be able to continue for the long-term. The other day before the event’s opening I climbed the island’s Oyama Mountain with motorcycle experts and asked them about the requirements needed to hold a motocross race. I was told that the mountain had very suitable conditions and that a very exciting race could be held there; this information in turn provided me with confidence. We now hope to put together some prize money, bring in a lot of racers, and turn this into an event that attracts many visitors to the island. This is definitely an event that we’ll make happen; if we don’t, we’ll be losing a great opportunity to revive Miyakejima Island. Look forward to it. This will be a wonderful event in which spectators can watch a very thrilling motocross race held within the island’s expansive, beautiful, and very mystical natural environment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleships.com/sample/?feed=rss2&amp;p=19</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Title 3</title>
		<link>http://www.tripleships.com/sample/?p=17</link>
		<comments>http://www.tripleships.com/sample/?p=17#comments</comments>
		<pubDate>Fri, 04 Dec 2009 03:41:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://www.tripleships.com/sample/?p=17</guid>
		<description><![CDATA[The Tokyo Metropolitan Government (TMG) has conducted environmentally friendly procurement according to the TMG Policy for Green Procurement Promotion, and campaigned to reduce strain on the environment arising from day-to-day work operations.
In an effort to promote the use of renewable energies, TMG has designated &#8220;electricity&#8221; as an item subject to green procurement, and mandated that [...]]]></description>
			<content:encoded><![CDATA[<p>The Tokyo Metropolitan Government (TMG) has conducted environmentally friendly procurement according to the TMG Policy for Green Procurement Promotion, and campaigned to reduce strain on the environment arising from day-to-day work operations.</p>
<p>In an effort to promote the use of renewable energies, TMG has designated &#8220;electricity&#8221; as an item subject to green procurement, and mandated that large metropolitan facilities that consume more than a set amount of power arrange electricity procurement with consideration to global warming.</p>
<p>As the first step, in November, the Edo Tokyo Museum will become the nation&#8217;s first public facility to make &#8220;Green Procurement&#8221; of electricity.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleships.com/sample/?feed=rss2&amp;p=17</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Title 5</title>
		<link>http://www.tripleships.com/sample/?p=13</link>
		<comments>http://www.tripleships.com/sample/?p=13#comments</comments>
		<pubDate>Fri, 04 Dec 2009 03:40:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://www.tripleships.com/sample/?p=13</guid>
		<description><![CDATA[Ohshima is a volcano island, 120km south of the mainland Japan, and could be reached from Tokyo in about half an hour flight. The zoo was opened by a steamship company, and transferred to Tokyo City in 1935. It exhibits Japanese cranes, Japanese serows, white-tailed sea-eagle, Japanese wood pigeons as well as Aldabra giant tortoises [...]]]></description>
			<content:encoded><![CDATA[<p><span>Ohshima is a volcano island, 120km south of the mainland Japan, and could be reached from Tokyo in about half an hour flight. The zoo was opened by a steamship company, and transferred to Tokyo City in 1935. It exhibits Japanese cranes, Japanese serows, white-tailed sea-eagle, Japanese wood pigeons as well as Aldabra giant tortoises and Hawaiian geese.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleships.com/sample/?feed=rss2&amp;p=13</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Title 6</title>
		<link>http://www.tripleships.com/sample/?p=11</link>
		<comments>http://www.tripleships.com/sample/?p=11#comments</comments>
		<pubDate>Fri, 04 Dec 2009 03:40:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://www.tripleships.com/sample/?p=11</guid>
		<description><![CDATA[Inokashira Park Zoo is located in a quiet and distinctive suburb of Tokyo. It exhibits a variety of Japanese species and contributes to the conservation and breeding of Japanese squirrels, mandarin ducks, and swans. The park also comprises a pond, a botanical garden and Seibo Kitamura (Japanese sculptor) Museum. The park’s lush verdure offers a [...]]]></description>
			<content:encoded><![CDATA[<p><span>Inokashira Park Zoo is located in a quiet and distinctive suburb of Tokyo. It exhibits a variety of Japanese species and contributes to the conservation and breeding of Japanese squirrels, mandarin ducks, and swans. The park also comprises a pond, a botanical garden and Seibo Kitamura (Japanese sculptor) Museum. The park’s lush verdure offers a relaxing atmosphere for any visitors.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleships.com/sample/?feed=rss2&amp;p=11</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Title 7</title>
		<link>http://www.tripleships.com/sample/?p=9</link>
		<comments>http://www.tripleships.com/sample/?p=9#comments</comments>
		<pubDate>Fri, 04 Dec 2009 03:40:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://www.tripleships.com/sample/?p=9</guid>
		<description><![CDATA[Please enjoy viewing realistic and dramatic displays of freshwater and marine life not only from Tokyo, but also from around the world, even from the Antarctic. In the huge 2,200-ton tank, you can enjoy watching bluefin tuna darting swiftly around. The aquarium also exhibits sea birds including penguins, and giant kelp from California, US. The [...]]]></description>
			<content:encoded><![CDATA[<p><span>Please enjoy viewing realistic and dramatic displays of freshwater and marine life not only from Tokyo, but also from around the world, even from the Antarctic. In the huge 2,200-ton tank, you can enjoy watching bluefin tuna darting swiftly around. The aquarium also exhibits sea birds including penguins, and giant kelp from California, US. The facility sits on the beach of Tokyo Bay and could be reached in half an hour by train from Tokyo station.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleships.com/sample/?feed=rss2&amp;p=9</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Title 8</title>
		<link>http://www.tripleships.com/sample/?p=7</link>
		<comments>http://www.tripleships.com/sample/?p=7#comments</comments>
		<pubDate>Fri, 04 Dec 2009 03:39:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://www.tripleships.com/sample/?p=7</guid>
		<description><![CDATA[At Tama Zoo, animals are displayed under naturalistic and spectacular habitats set up in its vast land of 52 ha (129 acres) in Hino City, one hour from central Tokyo by train. It exhibits Japanese animals such as sika deer, Yezo brown bears, and Japanese macaques, as well as animals from all over the world, [...]]]></description>
			<content:encoded><![CDATA[<p><span>At Tama Zoo, animals are displayed under naturalistic and spectacular habitats set up in its vast land of 52 ha (129 acres) in Hino City, one hour from central Tokyo by train. It exhibits Japanese animals such as sika deer, Yezo brown bears, and Japanese macaques, as well as animals from all over the world, such as African elephants, koalas, Indian rhinoceroses and orang-utans. The Lion Bus offers you a ride out among the lions.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleships.com/sample/?feed=rss2&amp;p=7</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Title 9</title>
		<link>http://www.tripleships.com/sample/?p=5</link>
		<comments>http://www.tripleships.com/sample/?p=5#comments</comments>
		<pubDate>Fri, 04 Dec 2009 03:39:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://www.tripleships.com/sample/?p=5</guid>
		<description><![CDATA[Established in 1882, Ueno Zoo is the oldest zoo in Japan. It has grown over the years, expanded its area, and been a forerunner in the Japanese zoo world. Located amid the downtown Tokyo, Ueno Zoo not only provides recreation, but also plays an essential role in wildlife conservation and public education. In an effort [...]]]></description>
			<content:encoded><![CDATA[<p><span>Established in 1882, Ueno Zoo is the oldest zoo in Japan. It has grown over the years, expanded its area, and been a forerunner in the Japanese zoo world. Located amid the downtown Tokyo, Ueno Zoo not only provides recreation, but also plays an essential role in wildlife conservation and public education. In an effort to breed endangered species, the zoo has completed the “Gorilla Woods” and “Tiger Forests.”</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tripleships.com/sample/?feed=rss2&amp;p=5</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
