<?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/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>（株）ゼロスリーのブログ</title>
	<atom:link href="http://zerothree.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://zerothree.info</link>
	<description>ウェブサイト制作やインターネット、デザイン、東京都立川市、多摩地域についての情報など</description>
	<lastBuildDate>Tue, 08 Oct 2013 00:50:00 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://zerothree.info/feed/" />
	<item>
		<title>EC-CUBEの商品登録ページの「一覧-メインコメント」をmeta要素（タグ）のdescriptionに表示する方法</title>
		<link>http://zerothree.info/2012/12/26/1262/</link>
		<comments>http://zerothree.info/2012/12/26/1262/#comments</comments>
		<pubDate>Wed, 26 Dec 2012 08:43:45 +0000</pubDate>
		<dc:creator><![CDATA[zerothree]]></dc:creator>
				<category><![CDATA[EC-CUBE]]></category>

		<guid isPermaLink="false">http://zerothree.info/?p=1262</guid>
		<description><![CDATA[前回の「EC-CUBEの商品登録ページの「検索ワード」をmeta要素（タグ）のkeywordsに表示する方法」に続き、今回はmeta要素（タグ）「description」を設定する方法です。 EC-CUBEは、各商品ごと [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>前回の「<a href="http://zerothree.info/2012/12/18/1249/">EC-CUBEの商品登録ページの「検索ワード」をmeta要素（タグ）のkeywordsに表示する方法</a>」に続き、今回はmeta要素（タグ）「description」を設定する方法です。</p>
<p>EC-CUBEは、各商品ごとにmeta要素（タグ）「description」の設定ができません。<br />
そこで、商品登録ページの「一覧-メインコメント」に設定した情報をmeta要素の「description」へ表示する方法です。</p>
<p>data/Smarty/templates/編集するテンプレートディレクトリ/<br />
にある<br />
site_frame.tpl<br />
の下記部分を</p>
<blockquote>
<pre class="brush: php; title: ; notranslate">
&amp;lt;!--{if $arrPageLayout.description|strlen &amp;gt;= 1}--&amp;gt;
    &amp;lt;meta name=&amp;quot;description&amp;quot; content=&amp;quot;&amp;lt;!--{$arrPageLayout.description|h}--&amp;gt;&amp;quot; /&amp;gt;
&amp;lt;!--{/if}--&amp;gt;
</pre>
</blockquote>
<p>下記へ書き換えるだけです。</p>
<blockquote>
<pre class="brush: xml; title: ; notranslate">
    &amp;lt;meta name=&amp;quot;description&amp;quot; content=&amp;quot;&amp;lt;!--{if $arrProduct.main_list_comment}--&amp;gt;&amp;lt;!--{$arrProduct.main_list_comment|escape|regex_replace:&amp;quot;/[\r\t\n]/&amp;quot;}--&amp;gt;&amp;lt;!--{/if}--&amp;gt;&amp;lt;!--{$arrPageLayout.description|h}--&amp;gt;&amp;quot; /&amp;gt;
</pre>
</blockquote>
<p>管理画面の「基本情報管理＞SEO管理」で登録した情報（Description）の前に、「一覧-メインコメント」で登録した情報（description）が追加される形で表示されます。</p>
<p>これで各商品ごとに「description」を設定・表示できます。</p>
]]></content:encoded>
			<wfw:commentRss>http://zerothree.info/2012/12/26/1262/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://zerothree.info/2012/12/26/1262/" />
	</item>
		<item>
		<title>EC-CUBEの商品登録ページの「検索ワード」をmeta要素（タグ）のkeywordsに表示する方法</title>
		<link>http://zerothree.info/2012/12/18/1249/</link>
		<comments>http://zerothree.info/2012/12/18/1249/#comments</comments>
		<pubDate>Tue, 18 Dec 2012 09:28:12 +0000</pubDate>
		<dc:creator><![CDATA[zerothree]]></dc:creator>
				<category><![CDATA[EC-CUBE]]></category>

		<guid isPermaLink="false">http://zerothree.info/?p=1249</guid>
		<description><![CDATA[EC-CUBEは、各商品ごとにmeta要素（タグ）「keywords」の設定ができません。 そこで、商品登録ページの「検索ワード」に設定した情報をmeta要素の「keywords」へ表示する方法です。 data/Smar [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>EC-CUBEは、各商品ごとにmeta要素（タグ）「keywords」の設定ができません。<br />
そこで、商品登録ページの「検索ワード」に設定した情報をmeta要素の「keywords」へ表示する方法です。</p>
<p>data/Smarty/templates/編集するテンプレートディレクトリ/<br />
にある<br />
site_frame.tpl<br />
の下記部分を</p>
<blockquote>
<pre class="brush: php; title: ; notranslate">
&lt;!--{if $arrPageLayout.keyword|strlen &gt;= 1}--&gt;
    &lt;meta name=&quot;keywords&quot; content=&quot;&lt;!--{$arrPageLayout.keyword|h}--&gt;&quot; /&gt;
&lt;!--{/if}--&gt;
</pre>
</blockquote>
<p>下記へ書き換えるだけです。</p>
<blockquote>
<pre class="brush: xml; title: ; notranslate">
    &lt;meta name=&quot;keywords&quot; content=&quot;&lt;!--{$arrPageLayout.keyword|escape}--&gt;&lt;!--{if $arrProduct.comment3}--&gt;,&lt;!--{$arrProduct.comment3|escape}--&gt;&lt;!--{/if}--&gt;&quot; /&gt;
</pre>
</blockquote>
<p>管理画面の「基本情報管理＞SEO管理」で登録した情報（keywords）の後ろに、「検索ワード」で登録した情報（keywords）が追加される形で表示されます。</p>
<p>少しでもSEOを考えるならば、このやり方でキーワードを入れてあげた方が、検索ロボットにやさしいですね。</p>
]]></content:encoded>
			<wfw:commentRss>http://zerothree.info/2012/12/18/1249/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://zerothree.info/2012/12/18/1249/" />
	</item>
		<item>
		<title>iDentity「Optimus it L-05D」用背面スキンシールカバーの販売を開始しました！</title>
		<link>http://zerothree.info/2012/11/06/1244/</link>
		<comments>http://zerothree.info/2012/11/06/1244/#comments</comments>
		<pubDate>Tue, 06 Nov 2012 03:47:15 +0000</pubDate>
		<dc:creator><![CDATA[zerothree]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[iDentity]]></category>
		<category><![CDATA[スマートフォン]]></category>
		<category><![CDATA[自社サービス]]></category>

		<guid isPermaLink="false">http://zerothree.info/?p=1244</guid>
		<description><![CDATA[iDentityにて「Optimus it L-05D」用背面スキンシールカバーの販売を開始しました！ 詳しくはiDentityブログ「Optimus it L-05Dの背面スキンシールカバーの販売を開始しました！」をご [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://i-dentity.me/">iDentity</a>にて<a href="http://i-dentity.me/">「Optimus it L-05D」用背面スキンシールカバー</a>の販売を開始しました！</p>
<p><a href="http://i-dentity.me/"><img src="http://zerothree.info/wp-content/uploads/2012/11/Optimus_2-400x300.jpg" alt="Optimus it L-05D" title="Optimus it L-05D" width="400" height="300" class="alignnone size-thumbnail wp-image-1245" /></a></p>
<p>詳しくはiDentityブログ「<a href="http://blog.i-dentity.me/?eid=477039">Optimus it L-05Dの背面スキンシールカバーの販売を開始しました！</a>」をご覧ください。</p>
<p>よろしくお願いします。</p>
]]></content:encoded>
			<wfw:commentRss>http://zerothree.info/2012/11/06/1244/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://zerothree.info/2012/11/06/1244/" />
	</item>
		<item>
		<title>iDentity「Xperia SX SO-05D」用背面スキンシールカバーの販売を開始しました！</title>
		<link>http://zerothree.info/2012/11/02/1238/</link>
		<comments>http://zerothree.info/2012/11/02/1238/#comments</comments>
		<pubDate>Fri, 02 Nov 2012 09:29:25 +0000</pubDate>
		<dc:creator><![CDATA[zerothree]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[iDentity]]></category>
		<category><![CDATA[スマートフォン]]></category>
		<category><![CDATA[自社サービス]]></category>

		<guid isPermaLink="false">http://zerothree.info/?p=1238</guid>
		<description><![CDATA[iDentityにて「Xperia SX SO-05D」用背面スキンシールカバーの販売を開始しました！ 詳しくはiDentityブログ「Xperia SX SO-05Dの背面スキンシールカバーの販売を開始しました！」をご [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://i-dentity.me/">iDentity</a>にて<a href="http://i-dentity.me/">「Xperia SX SO-05D」用背面スキンシールカバー</a>の販売を開始しました！</p>
<p><a href="http://i-dentity.me/"><img src="http://zerothree.info/wp-content/uploads/2012/11/Xperia-SX_2-400x300.jpg" alt="Xperia SX SO-05D" title="Xperia SX SO-05D" width="400" height="300" class="alignnone size-thumbnail wp-image-1239" /></a></p>
<p>詳しくはiDentityブログ「<a href="http://blog.i-dentity.me/?eid=475650">Xperia SX SO-05Dの背面スキンシールカバーの販売を開始しました！</a>」をご覧ください。</p>
<p>よろしくお願いします。</p>
]]></content:encoded>
			<wfw:commentRss>http://zerothree.info/2012/11/02/1238/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://zerothree.info/2012/11/02/1238/" />
	</item>
		<item>
		<title>iDentity「Xperia GX SO-04D」用背面スキンシールカバーの販売を開始しました！</title>
		<link>http://zerothree.info/2012/11/01/1234/</link>
		<comments>http://zerothree.info/2012/11/01/1234/#comments</comments>
		<pubDate>Thu, 01 Nov 2012 03:51:06 +0000</pubDate>
		<dc:creator><![CDATA[zerothree]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[iDentity]]></category>
		<category><![CDATA[スマートフォン]]></category>
		<category><![CDATA[自社サービス]]></category>

		<guid isPermaLink="false">http://zerothree.info/?p=1234</guid>
		<description><![CDATA[iDentityにて「Xperia GX SO-04D」用背面スキンシールカバーの販売を開始しました！ 詳しくはiDentityブログ「Xperia GX SO-04Dの背面スキンシールカバーの販売を開始しました！」をご [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://i-dentity.me/">iDentity</a>にて<a href="http://i-dentity.me/">「Xperia GX SO-04D」用背面スキンシールカバー</a>の販売を開始しました！</p>
<p><a href="http://i-dentity.me/"><img src="http://zerothree.info/wp-content/uploads/2012/11/Xperia-GX_1-400x300.jpg" alt="Xperia GX SO-04D" title="Xperia GX SO-04D" width="400" height="300" class="alignnone size-medium wp-image-1235" /></a></p>
<p>詳しくはiDentityブログ「<a href="http://blog.i-dentity.me/?eid=475341">Xperia GX SO-04Dの背面スキンシールカバーの販売を開始しました！</a>」をご覧ください。</p>
<p>よろしくお願いします。</p>
]]></content:encoded>
			<wfw:commentRss>http://zerothree.info/2012/11/01/1234/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://zerothree.info/2012/11/01/1234/" />
	</item>
		<item>
		<title>iDentity「ARROWS X F-10D」用背面スキンシールカバーの販売を開始しました！</title>
		<link>http://zerothree.info/2012/10/24/1223/</link>
		<comments>http://zerothree.info/2012/10/24/1223/#comments</comments>
		<pubDate>Wed, 24 Oct 2012 03:41:21 +0000</pubDate>
		<dc:creator><![CDATA[zerothree]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[iDentity]]></category>
		<category><![CDATA[スマートフォン]]></category>
		<category><![CDATA[自社サービス]]></category>

		<guid isPermaLink="false">http://zerothree.info/?p=1223</guid>
		<description><![CDATA[iDentityにて「ARROWS X F-10D」用背面スキンシールカバーの販売を開始しました！ 詳しくはiDentityブログ「ARROWS X F-10Dの背面スキンシールカバーの販売を開始しました！」をご覧くださ [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://i-dentity.me/">iDentity</a>にて<a href="http://i-dentity.me/">「ARROWS X F-10D」用背面スキンシールカバー</a>の販売を開始しました！</p>
<p><a href="http://i-dentity.me/"><img src="http://zerothree.info/wp-content/uploads/2012/10/arrowsx_f10d_21-400x300.jpg" alt="ARROWS X F-10D" title="ARROWS X F-10D" width="400" height="300" class="alignnone size-medium wp-image-1226" /></a></p>
<p>詳しくはiDentityブログ「<a href="http://blog.i-dentity.me/?eid=474961">ARROWS X F-10Dの背面スキンシールカバーの販売を開始しました！</a>」をご覧ください。</p>
<p>よろしくお願いします。</p>
]]></content:encoded>
			<wfw:commentRss>http://zerothree.info/2012/10/24/1223/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://zerothree.info/2012/10/24/1223/" />
	</item>
		<item>
		<title>iDentity「GALAXY S3 SC-06D」用背面スキンシールカバーの販売を開始しました！</title>
		<link>http://zerothree.info/2012/10/04/1205/</link>
		<comments>http://zerothree.info/2012/10/04/1205/#comments</comments>
		<pubDate>Thu, 04 Oct 2012 10:44:30 +0000</pubDate>
		<dc:creator><![CDATA[zerothree]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[iDentity]]></category>
		<category><![CDATA[スマートフォン]]></category>
		<category><![CDATA[自社サービス]]></category>

		<guid isPermaLink="false">http://zerothree.info/?p=1205</guid>
		<description><![CDATA[iDentityにてドコモのスマートフォン「GALAXY S3 SC-06D」用背面スキンシールカバーの販売を開始しました！ 売れている人気のギャラクシーシリーズですので、iDentityで背面スキンシールカバーが発売さ [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>iDentityにてドコモのスマートフォン「GALAXY S3 SC-06D」用背面スキンシールカバーの販売を開始しました！</p>
<p><a href="http://i-dentity.me/"><img src="http://zerothree.info/wp-content/uploads/2012/10/galaxys3_1-400x300.jpg" alt="GALAXY S3" title="galaxys3_1" width="400" height="300" class="alignnone size-medium wp-image-1206" /></a></p>
<p>売れている人気のギャラクシーシリーズですので、iDentityで背面スキンシールカバーが発売されるのを、お待ちになっていた方も多いかと思います。</p>
<p>今回は、イヤホンの差し込み口や、アンテナなどがある周りの面まではスキンシールカバーで覆われず、平らな背面部分までとなっております。<br />
iDentityスキンシールカバーの素材特性上、どうしてもこのような感じになりますが、違和感なく綺麗に出来上がっていると思います。</p>
<p><a href="http://i-dentity.me/"><img src="http://zerothree.info/wp-content/uploads/2012/10/galaxys3_2-400x300.jpg" alt="GALAXY S3" title="galaxys3_2" width="400" height="300" class="alignnone size-medium wp-image-1207" /></a><br />
境目が少し見にくいですが、良い感じです。</p>
<p><a href="http://i-dentity.me/"><img src="http://zerothree.info/wp-content/uploads/2012/10/galaxys3_3-400x300.jpg" alt="GALAXY S3" title="galaxys3_3" width="400" height="300" class="alignnone size-medium wp-image-1208" /></a><br />
お尻側も綺麗。</p>
<p><a href="http://i-dentity.me/"><img src="http://zerothree.info/wp-content/uploads/2012/10/galaxys3_4-400x300.jpg" alt="GALAXY S3" title="galaxys3_4" width="400" height="300" class="alignnone size-medium wp-image-1209" /></a><br />
斜めから見てもGOOD！ですね！</p>
<p>今回も自信のある製品となっておりますので、是非一度お試しく下さい！<br />
多くのデザインを用意してお待ちしております。<br />
それでは、皆様からのご注文お待ちしております。</p>
<p><a href="http://i-dentity.me/">＞＞iDentity「GALAXY S3」用背面スキンシールカバー</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zerothree.info/2012/10/04/1205/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://zerothree.info/2012/10/04/1205/" />
	</item>
		<item>
		<title>iDentity「iPhone5」用背面スキンシールカバーの販売を開始しました！</title>
		<link>http://zerothree.info/2012/10/02/1198/</link>
		<comments>http://zerothree.info/2012/10/02/1198/#comments</comments>
		<pubDate>Tue, 02 Oct 2012 02:24:07 +0000</pubDate>
		<dc:creator><![CDATA[zerothree]]></dc:creator>
				<category><![CDATA[iDentity]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[スマートフォン]]></category>
		<category><![CDATA[自社サービス]]></category>

		<guid isPermaLink="false">http://zerothree.info/?p=1198</guid>
		<description><![CDATA[スマートフォンの背面スキンカバーを販売しているiDentityから、新機種として先日Appleより発売された「iPhone5」用の背面スキンシールカバーを販売開始しました！ いつも通り、この背面スキンカバーのクオリティは [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>スマートフォンの背面スキンカバーを販売している<a href="http://i-dentity.me/">iDentity</a>から、新機種として先日Appleより発売された<a href="http://i-dentity.me/">「iPhone5」用の背面スキンシールカバー</a>を販売開始しました！</p>
<p><a href="http://i-dentity.me/"><img src="http://zerothree.info/wp-content/uploads/2012/10/iphone5_1-400x300.jpg" alt="iPhone5" title="iphone5_4" width="400" height="300" class="alignnone size-medium wp-image-1201" /></a></p>
<p>いつも通り、この背面スキンカバーのクオリティは、もちろん最高のiDentityクオリティです。とても綺麗に出来上がりました。</p>
<p>今回は、予告なしで急遽販売することになりましたので、少し驚かしてしまったでしょうか。<br />
まぁ、たまにはこんなこともあります。</p>
<p><a href="http://i-dentity.me/"><img src="http://zerothree.info/wp-content/uploads/2012/10/iphone5_2-400x300.jpg" alt="iPhone5" title="iphone5_2" width="400" height="300" class="alignnone size-medium wp-image-1203" /></a><br />
全体を見ても綺麗ですね。</p>
<p><a href="http://i-dentity.me/"><img src="http://zerothree.info/wp-content/uploads/2012/10/iphone5_3-400x300.jpg" alt="iPhone5" title="iphone5_3" width="400" height="300" class="alignnone size-medium wp-image-1200" /></a><br />
今回、カメラの穴は、フラッシュと繋がるタイプとなりました。</p>
<p><a href="http://i-dentity.me/"><img src="http://zerothree.info/wp-content/uploads/2012/10/iphone5_4-400x300.jpg" alt="iPhone5" title="iphone5_4" width="400" height="300" class="alignnone size-medium wp-image-1201" /></a><br />
iPhone5の背面下部の接写です。良い感じですね。</p>
<p>今回も自信のある製品となっておりますので、是非一度お試しく下さい！<br />
多くのデザインを用意してお待ちしております。<br />
それでは、皆様からのご注文お待ちしております。</p>
<p><a href="http://i-dentity.me/">＞＞iDentity「iPhone5」用背面スキンシールカバー</a></p>
]]></content:encoded>
			<wfw:commentRss>http://zerothree.info/2012/10/02/1198/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://zerothree.info/2012/10/02/1198/" />
	</item>
		<item>
		<title>Androidアプリ「色当てゲーム」を開発～リリースしました！（幼児向け知育アプリ）</title>
		<link>http://zerothree.info/2012/09/03/1175/</link>
		<comments>http://zerothree.info/2012/09/03/1175/#comments</comments>
		<pubDate>Mon, 03 Sep 2012 10:43:28 +0000</pubDate>
		<dc:creator><![CDATA[zerothree]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[アプリ]]></category>
		<category><![CDATA[スマートフォン]]></category>
		<category><![CDATA[自社サービス]]></category>

		<guid isPermaLink="false">http://zerothree.info/?p=1175</guid>
		<description><![CDATA[Android専用アプリ「色当てゲーム」を開発～リリースしました！これでAndroidアプリは第７弾です。 この「色当てゲーム」アプリは、幼児向けの知育アプリとして開発しました。 アプリが色を聞いてくるので、その色を４つ [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Android専用アプリ「<a href="https://play.google.com/store/apps/details?id=co.jp.zerothree.colorquizgame">色当てゲーム</a>」を開発～リリースしました！これでAndroidアプリは第７弾です。</p>
<p><a href="https://play.google.com/store/apps/details?id=co.jp.zerothree.colorquizgame"><img src="http://zerothree.info/wp-content/uploads/2012/09/icon512-300x300.png" alt="色当てゲームアプリ" title="色当てゲームアプリアイコン" width="300" height="300" class="alignnone size-medium wp-image-1177" /></a></p>
<p><a href="https://play.google.com/store/apps/details?id=co.jp.zerothree.colorquizgame"><img src="http://zerothree.info/wp-content/uploads/2012/09/colorquizgame_qrc.jpg" alt="色当てゲームQRコード" title="色当てゲームQRコード" width="180" height="180" class="alignnone size-full wp-image-1182" /></a></p>
<p>この「<a href="https://play.google.com/store/apps/details?id=co.jp.zerothree.colorquizgame">色当てゲーム</a>」アプリは、幼児向けの知育アプリとして開発しました。<br />
アプリが色を聞いてくるので、その色を４つの大きなパネルから選んで、タップするだけのシンプルで簡単なゲームです。</p>
<p>色は全部で１６色あります。英語表記もしましたので、英語の色名も勉強することができます。<br />
赤色/Red、茶色/Brown、橙色/Orange、黄色/Yellow、黄緑色/Yellowish Green、緑色/Green、水色/Aqua Blue、青色/Blue、紺色/Navy、紫色/Purple、桃色/Pink、黒色/Black、白色/White、灰色/Gray、銀色/Silver、金色/Gold。</p>
<p>子供にのびのびと遊んでもらうために、タイム計測などは付けておりません。<br />
また、何度も同じ質問ができるように、正解してもすぐに次の問題へはいきません。</p>
<p>この「<a href="https://play.google.com/store/apps/details?id=co.jp.zerothree.colorquizgame">色当てゲーム</a>」アプリも「無料」で遊べますので、気軽にダウンロードして遊んでみてください。</p>
<p><img src="http://zerothree.info/wp-content/uploads/2012/09/screenshot_2012-09-03_1425-168x300.png" alt="色当てゲームアプリ" title="色当てゲームアプリ" width="168" height="300" class="alignnone size-medium wp-image-1179" /><img src="http://zerothree.info/wp-content/uploads/2012/09/screenshot_2012-09-03_1426-168x300.png" alt="色当てゲームアプリ" title="色当てゲームアプリ" width="168" height="300" class="alignnone size-medium wp-image-1180" /></p>
<p>それでは、皆様のダウンロード、心よりお待ちしております。</p>
]]></content:encoded>
			<wfw:commentRss>http://zerothree.info/2012/09/03/1175/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://zerothree.info/2012/09/03/1175/" />
	</item>
		<item>
		<title>昭島市「モリタウン」で、ハワイアンイベント「ALOHA CARNIVAL」が開催されます！</title>
		<link>http://zerothree.info/2012/08/31/1165/</link>
		<comments>http://zerothree.info/2012/08/31/1165/#comments</comments>
		<pubDate>Fri, 31 Aug 2012 02:39:09 +0000</pubDate>
		<dc:creator><![CDATA[zerothree]]></dc:creator>
				<category><![CDATA[多摩地区]]></category>

		<guid isPermaLink="false">http://zerothree.info/?p=1165</guid>
		<description><![CDATA[昭島市の「モリタウン」で、ハワイアンイベント「ALOHA CARNIVA（アロハカーニバル）」が開催されます。 ■「昭島モリタウン アロハカーニバル オフィシャルサイト」 日時は、明日９月１日と２日の２日間、１０時から１ [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>昭島市の「<a href="http://moritown.com/" rel="nofollow">モリタウン</a>」で、ハワイアンイベント「<a href="http://www.alohawave.jp/carnival/" rel="nofollow">ALOHA CARNIVA（アロハカーニバル）</a>」が開催されます。</p>
<p><a href="http://www.alohawave.jp/carnival/" rel="nofollow"><img src="http://zerothree.info/wp-content/uploads/2012/08/alohacarnival-400x135.jpg" alt="アロハカーニバル" title="alohacarnival" width="400" height="135" class="alignnone size-thumbnail wp-image-1166" /></a></p>
<p>■「<a href="http://www.alohawave.jp/carnival/">昭島モリタウン アロハカーニバル オフィシャルサイト</a>」</p>
<p>日時は、明日９月１日と２日の２日間、１０時から１８時まで。<br />
会場は、「<a href="http://moritown.com/" rel="nofollow">モリタウン</a>」MOVIX前ガーデンステージです。<br />
開催内容は、フラダンスにタヒチアンダンス、生バンド演奏、ハワイのお店が出るそうです。</p>
<p>フラダンスにタヒチアンダンスは、可愛い子供フラが良さそう。<br />
生バンドは、InterFM「Midday Magic」でラジオDJをしているVance Kさん率いる「Vance K Band」だそうです。<br />
ハワイのお店は、ハワイの有名スイーツが食べれるそうなので、これも楽しみですね！</p>
<p>■モリタウン「イベント情報」より</p>
<blockquote><p>
9月1日、2日はモリタウンでアロハカーニバルを開催！<br />
優雅なフラダンス・情熱的なタヒチアンダンス・生バンドライブ・ハワイのお店に<br />
子供たちのフラダンスタイムもあるよ！<br />
ハワイの有名スイーツ『マラサダ』や、『ガーリックシュリンプ』のランチワゴンもやってくる！<br />
みんなハワイで盛り上がろう♪♪</p>
<p>【開催日時】<br />
平成24年9月1日（土）、2日（日）<br />
10：00～18：00</p>
<p>【開催会場】<br />
MOVIX前ガーデンステージ<br />
※子供たちのフラダンスのみ館内「東館1階　光の広場」<br />
　開催時間は、(1)13：00～　　(2)14：00～　　(3)15：00～</p>
<p>【ゲスト】<br />
出演者：Vance K Band　（バンス・ケイ・バンド）<br />
　　　　　　※InterFM・FM YOKOHAMAのらじおDJとして人気のVance　K率いる<br />
　　　　　　　アイランドミュージックバンド！<br />
出演日時：9月1日（土）　17：00～<br />
場所：MOVIX前ガーデンステージ<br />
その他：ライブ終了後サイン会もあります！<br />
【後援】<br />
ハワイ州観光局
</p></blockquote>
<p>この週末は是非、昭島「モリタウン」の「アロハカーニバル」に出かけてみてはいかがでしょうか。</p>
]]></content:encoded>
			<wfw:commentRss>http://zerothree.info/2012/08/31/1165/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://zerothree.info/2012/08/31/1165/" />
	</item>
	</channel>
</rss>
