<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xml:lang="ja" xml:base="http://www.goodtimes.jp/wp-atom.php">
	<title type="text">GOODTIMES</title>
	<subtitle type="text">GOODTIMESな日々の雑多なウェブログ。停滞中…。</subtitle>

	<updated>2010-08-27T08:02:48Z</updated>

	<link rel="alternate" type="text/html" href="http://www.goodtimes.jp" />
	<id>http://www.goodtimes.jp/feed/atom/</id>
	

	<generator uri="http://wordpress.org/" version="3.0.1">WordPress</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/goodtimes_weblog" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="goodtimes_weblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry>
		<author>
			<name>Tsunekichi</name>
						<uri>http://www.goodtimes.jp/</uri>
					</author>
		<title type="html"><![CDATA[WordPressで構築したサイトの「お知らせ」をカスタマイズ]]></title>
		<link rel="alternate" type="text/html" href="http://www.goodtimes.jp/2010/08/26/wordpress-customize-01/" />
		<id>http://www.goodtimes.jp/?p=301</id>
		<updated>2010-08-27T07:59:23Z</updated>
		<published>2010-08-26T05:44:57Z</published>
		<category scheme="http://www.goodtimes.jp" term="WordPress" />		<summary type="html"><![CDATA[				とあるお客様から、WordPressで構築したサイトの「お知らせ」部分について、いくつか要望があったので、それをどのように実現したら良いのか方法を考えてみた。
				お客様からの要望
				
				サイト内 [...]]]></summary>
		<content type="html" xml:base="http://www.goodtimes.jp/2010/08/26/wordpress-customize-01/"><![CDATA[				<p>とあるお客様から、WordPressで構築したサイトの「お知らせ」部分について、いくつか要望があったので、それをどのように実現したら良いのか方法を考えてみた。</p>
				<h3>お客様からの要望</h3>
				<ul>
				<li>サイト内のページに直接移動できるようにリンクしたい</li>
				<li>PDFファイル、Wordファイル、Excelファイルへリンクしたい</li>
				<li>従来の記事を投稿する「お知らせ」のスタイルも維持したい</li>
				</ul>
				<p>などなど。<br />
				結論としては、カスタムフィールドを使って対応できる（はず）。</p>
				<p>WordPressでカスタムフィールドを使うときは、<a href="http://www.tinybeans.net/blog/download/wp-plugin/cfg-utility-3.html">Custom Field GUI Utility 3</a>と<a href="http://coffee2code.com/wp-plugins/get-custom-field-values/">Get Custom Field Values</a>の両プラグインが大変便利で重宝しています。下のソースコードもその二つのプラグインを有効化した前提<sup>*<a href="http://www.goodtimes.jp/2010/08/26/wordpress-customize-01/#footnote_0_301" id="identifier_0_301" class="footnote-link footnote-identifier-link" title="プラグインの使い方など興味ある方は調べてみてね">1</a></sup> で書いてあります。ということで、備忘録としてソースコードもとりあえず書いておく。</p>
				<h3>ソースコード</h3>
				<p>[php]</p>
				<p>&lt;ul&gt;<br />
				&lt;?php $posts = get_posts(&#8216;category=3&amp;numberposts=10&#8242;); ?&gt;<br />
				&lt;?php if ($posts) : foreach( $posts as $post ) : setup_postdata($post); ?&gt;<br />
				&lt;li&gt;&lt;span class=&#8221;news_title&#8221;&gt;<br />
				&lt;?php if(get_post_meta($post-&gt;ID,&#8217;title_field&#8217;,true)): //カスタムフィールドに値が入っている場合 ?&gt;<br />
				&lt;a href=&#8221;&lt;?php echo c2c_get_custom(&#8216;url_field&#8217;,&#8221;,&#8221;,&#8217;&amp;nbsp;&#8217;,&#8221;,&#8221;); ?&gt;&#8221;&gt;<br />
				&lt;?php echo c2c_get_custom(&#8216;title_field&#8217;,&#8221;,&#8221;,&#8217;&amp;nbsp;&#8217;,&#8221;,&#8221;); ?&gt;&lt;/a&gt;&lt;/span&gt;<br />
				&lt;?php else: ?&gt;<br />
				&lt;a href=&#8221;&lt;?php the_permalink(); ?&gt;&#8221;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/span&gt;<br />
				&lt;?php endif; ?&gt;<br />
				&lt;br /&gt;&lt;span class=&#8221;date&#8221;&gt;&lt;?php the_time(&#8216;Y年m月d日&#8217;); ?&gt;&lt;/span&gt;&lt;/li&gt;<br />
				&lt;?php endforeach; endif; ?&gt;<br />
				&lt;/ul&gt;</p>
				<p>[/php]</p>
				<p>カテゴリーID3に属する記事10件をリストアップするように記述して、「カスタムフィールドに値が入っていればその内容を表示。そうじゃなければ、投稿のタイトルを表示」という流れで書くと、要望には応えられるかな。</p>
				<ol class="footnotes"><li id="footnote_0_301" class="footnote">プラグインの使い方など興味ある方は調べてみてね</li></ol>
]]></content>
		<link rel="replies" type="text/html" href="http://www.goodtimes.jp/2010/08/26/wordpress-customize-01/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.goodtimes.jp/2010/08/26/wordpress-customize-01/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>Tsunekichi</name>
						<uri>http://www.goodtimes.jp/</uri>
					</author>
		<title type="html"><![CDATA[臨月突入]]></title>
		<link rel="alternate" type="text/html" href="http://www.goodtimes.jp/2010/08/19/last-month-of-pregnancy/" />
		<id>http://www.goodtimes.jp/?p=299</id>
		<updated>2010-08-27T07:59:25Z</updated>
		<published>2010-08-19T13:34:11Z</published>
		<category scheme="http://www.goodtimes.jp" term="雑記" /><category scheme="http://www.goodtimes.jp" term="出産" /><category scheme="http://www.goodtimes.jp" term="妊娠" />		<summary type="html"><![CDATA[				妻は月曜日から産休に入り、水曜日から10ヶ月目、つまり臨月に突入しました。今のところ大きな問題もなく、元気に過ごしているので安心です。迎え入れる準備もどんどんやっていかないとね。
]]></summary>
		<content type="html" xml:base="http://www.goodtimes.jp/2010/08/19/last-month-of-pregnancy/"><![CDATA[				<p>妻は月曜日から産休に入り、水曜日から10ヶ月目、つまり臨月に突入しました。今のところ大きな問題もなく、元気に過ごしているので安心です。迎え入れる準備もどんどんやっていかないとね。</p>
]]></content>
		<link rel="replies" type="text/html" href="http://www.goodtimes.jp/2010/08/19/last-month-of-pregnancy/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.goodtimes.jp/2010/08/19/last-month-of-pregnancy/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>Tsunekichi</name>
						<uri>http://www.goodtimes.jp/</uri>
					</author>
		<title type="html"><![CDATA[逆子を直した]]></title>
		<link rel="alternate" type="text/html" href="http://www.goodtimes.jp/2010/07/30/fixed-breech-position/" />
		<id>http://www.goodtimes.jp/?p=296</id>
		<updated>2010-08-27T07:59:25Z</updated>
		<published>2010-07-30T14:32:38Z</published>
		<category scheme="http://www.goodtimes.jp" term="雑記" /><category scheme="http://www.goodtimes.jp" term="出産" /><category scheme="http://www.goodtimes.jp" term="妊娠" />		<summary type="html"><![CDATA[				今日は二週に一度の定期検診。妻に話を聞いてみると、前回同様逆子だったようで、先生がお腹を押しながら頭の位置を動かして逆子を直したそうです。
				えーーっ、そんなことできるんかい(　ﾟДﾟ)
				
]]></summary>
		<content type="html" xml:base="http://www.goodtimes.jp/2010/07/30/fixed-breech-position/"><![CDATA[				<p>今日は二週に一度の定期検診。妻に話を聞いてみると、前回同様逆子だったようで、先生がお腹を押しながら頭の位置を動かして逆子を直したそうです。</p>
				<p>えーーっ、そんなことできるんかい(　ﾟДﾟ)</p>
				<p><img src="http://www.goodtimes.jp/weblog/wp-content/uploads/20100730_01.jpg" alt="妊娠33週目のお腹" width="480" height="640" class="alignnone size-full wp-image-297" /></p>
]]></content>
		<link rel="replies" type="text/html" href="http://www.goodtimes.jp/2010/07/30/fixed-breech-position/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.goodtimes.jp/2010/07/30/fixed-breech-position/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>Tsunekichi</name>
						<uri>http://www.goodtimes.jp/</uri>
					</author>
		<title type="html"><![CDATA[スターウォーズ全6エピソードを鑑賞【NHK BS hi】]]></title>
		<link rel="alternate" type="text/html" href="http://www.goodtimes.jp/2010/07/29/star-wars/" />
		<id>http://www.goodtimes.jp/?p=293</id>
		<updated>2010-08-27T07:59:25Z</updated>
		<published>2010-07-29T14:34:47Z</published>
		<category scheme="http://www.goodtimes.jp" term="映画" /><category scheme="http://www.goodtimes.jp" term="テレビ" /><category scheme="http://www.goodtimes.jp" term="娯楽" />		<summary type="html"><![CDATA[				NHK BS-hiでやってたスターウォーズ全6エピソード1から6までを、DVDにダビングしながら鑑賞しました。新三部作に関しては、映画館で観て以来久しぶりに観たので、エピソード3が5年くらい、エピソード1にいたっ [...]]]></summary>
		<content type="html" xml:base="http://www.goodtimes.jp/2010/07/29/star-wars/"><![CDATA[				<p>NHK BS-hiでやってたスターウォーズ全6エピソード1から6までを、DVDにダビングしながら鑑賞しました。新三部作に関しては、映画館で観て以来久しぶりに観たので、エピソード3が5年くらい、エピソード1にいたっては10年経っただろうか。</p>
				<p>こうして順を追って観ていくと、人に歴史ありと言われるように、アナキン・スカイウォーカー<sup>*<a href="http://www.goodtimes.jp/2010/07/29/star-wars/#footnote_0_293" id="identifier_0_293" class="footnote-link footnote-identifier-link" title="ダース・ベイダーではなく敢えてアナキン">1</a></sup> の波瀾万丈な人生を描いた作品だったのねと気付きました。</p>
				<p>そこには息子ルーク・スカイウォーカーとの関係<sup>*<a href="http://www.goodtimes.jp/2010/07/29/star-wars/#footnote_1_293" id="identifier_1_293" class="footnote-link footnote-identifier-link" title="まぎれもない親子愛ですよね">2</a></sup> が織り込まれ、単なるドンパチ、チャンバラ映画じゃないなと改めて感じました。</p>
				<p>それにしてもR2-D2とC-3POは何度観ても最高のコンビですね。緊迫した展開で、この二人<sup>*<a href="http://www.goodtimes.jp/2010/07/29/star-wars/#footnote_2_293" id="identifier_2_293" class="footnote-link footnote-identifier-link" title="ちょっと変な感じだけど敢えて">3</a></sup> のやりとりによってフッと抜ける瞬間がもたらされるのも、スターウォーズの大きな魅力だと思います。</p>
				<p>これを機会にスターウォーズのことをもっと知りたいと欲求が出てきたのも事実で、これもまたNHKでやってるクローンウォーズでも観てみようかな。</p>
				<ol class="footnotes"><li id="footnote_0_293" class="footnote">ダース・ベイダーではなく敢えてアナキン</li><li id="footnote_1_293" class="footnote">まぎれもない親子愛ですよね</li><li id="footnote_2_293" class="footnote">ちょっと変な感じだけど敢えて</li></ol>
]]></content>
		<link rel="replies" type="text/html" href="http://www.goodtimes.jp/2010/07/29/star-wars/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.goodtimes.jp/2010/07/29/star-wars/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>Tsunekichi</name>
						<uri>http://www.goodtimes.jp/</uri>
					</author>
		<title type="html"><![CDATA[コアトレーニングの本を買って実践中]]></title>
		<link rel="alternate" type="text/html" href="http://www.goodtimes.jp/2010/07/27/core-training/" />
		<id>http://www.goodtimes.jp/?p=285</id>
		<updated>2010-08-27T07:59:26Z</updated>
		<published>2010-07-27T14:23:26Z</published>
		<category scheme="http://www.goodtimes.jp" term="健康" /><category scheme="http://www.goodtimes.jp" term="ショッピング" /><category scheme="http://www.goodtimes.jp" term="本" /><category scheme="http://www.goodtimes.jp" term="運動" />		<summary type="html"><![CDATA[				気になっている肩こりやお腹まわりを何とかするのを目的に、最近よく見聞きしていたキーワード「体幹」「コアトレ」がタイトルに入っている本を買ってみた。
				
					
					体幹を鍛える コアトレ スタート [...]]]></summary>
		<content type="html" xml:base="http://www.goodtimes.jp/2010/07/27/core-training/"><![CDATA[				<p>気になっている肩こりやお腹まわりを何とかするのを目的に、最近よく見聞きしていたキーワード「体幹」「コアトレ」がタイトルに入っている本を買ってみた。</p>
				<div class="simple-amazon-view">
					<p><a href="http://www.amazon.co.jp/%E4%BD%93%E5%B9%B9%E3%82%92%E9%8D%9B%E3%81%88%E3%82%8B-%E3%82%B9%E3%82%BF%E3%83%BC%E3%83%88%E3%83%96%E3%83%83%E3%82%AF-GAKKEN-SPORTS-BOOKS/dp/4054044999%3FSubscriptionId%3DAKIAJNREFYXIFYMQPY7A%26tag%3Dgoodtimes-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D4054044999"><img src="http://ecx.images-amazon.com/images/I/51Qqrc-9YPL._SL160_.jpg" height="160" width="112" alt="" class="sa-image" /></a></p>
					<p class="sa-title"><a href="http://www.amazon.co.jp/%E4%BD%93%E5%B9%B9%E3%82%92%E9%8D%9B%E3%81%88%E3%82%8B-%E3%82%B9%E3%82%BF%E3%83%BC%E3%83%88%E3%83%96%E3%83%83%E3%82%AF-GAKKEN-SPORTS-BOOKS/dp/4054044999%3FSubscriptionId%3DAKIAJNREFYXIFYMQPY7A%26tag%3Dgoodtimes-22%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D4054044999">体幹を鍛える コアトレ スタートブック (GAKKEN SPORTS BOOKS)</a></p>
					<ul class="sa-detail">
					<li>著者／訳者：有吉 与志恵</li>
					<li>出版社：学習研究社( 2010-04-14 )</li>
					<li>単行本：159 ページ</li>
					</ul>
				</div>
]]></content>
		<link rel="replies" type="text/html" href="http://www.goodtimes.jp/2010/07/27/core-training/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.goodtimes.jp/2010/07/27/core-training/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>Tsunekichi</name>
						<uri>http://www.goodtimes.jp/</uri>
					</author>
		<title type="html"><![CDATA[9ヶ月目に突入]]></title>
		<link rel="alternate" type="text/html" href="http://www.goodtimes.jp/2010/07/23/rushes-into-on-9th-month/" />
		<id>http://www.goodtimes.jp/?p=291</id>
		<updated>2010-08-27T07:59:27Z</updated>
		<published>2010-07-22T22:08:05Z</published>
		<category scheme="http://www.goodtimes.jp" term="雑記" /><category scheme="http://www.goodtimes.jp" term="出産" /><category scheme="http://www.goodtimes.jp" term="妊娠" />		<summary type="html"><![CDATA[				妻のお腹の中の赤ちゃんも水曜日からは9ヶ月目に入りました。順調に育っているなか、先週末辺りから、迎え入れた後に必要な物などの買い物をして準備を整えているところです。
				しかし、物ではなく、肝心の心構え*1  [...]]]></summary>
		<content type="html" xml:base="http://www.goodtimes.jp/2010/07/23/rushes-into-on-9th-month/"><![CDATA[				<p>妻のお腹の中の赤ちゃんも水曜日からは9ヶ月目に入りました。順調に育っているなか、先週末辺りから、迎え入れた後に必要な物などの買い物をして準備を整えているところです。</p>
				<p>しかし、物ではなく、肝心の心構え<sup>*<a href="http://www.goodtimes.jp/2010/07/23/rushes-into-on-9th-month/#footnote_0_291" id="identifier_0_291" class="footnote-link footnote-identifier-link" title="なにぶん初めての子供なので「しっかりやらないと」という思いが強い">1</a></sup> など気持ちの面で、準備に遅れがあるのではと一抹の不安を抱いているのも事実でして、今日はそれを払拭できるかもしれない病院主催の両親学級があるので参加してきます。</p>
				<p>いろんな話が聞けると思うので、活かせるように頑張るよお父ちゃんは。</p>
				<ol class="footnotes"><li id="footnote_0_291" class="footnote">なにぶん初めての子供なので「しっかりやらないと」という思いが強い</li></ol>
]]></content>
		<link rel="replies" type="text/html" href="http://www.goodtimes.jp/2010/07/23/rushes-into-on-9th-month/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.goodtimes.jp/2010/07/23/rushes-into-on-9th-month/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>Tsunekichi</name>
						<uri>http://www.goodtimes.jp/</uri>
					</author>
		<title type="html"><![CDATA[トイストーリー3を観てきた]]></title>
		<link rel="alternate" type="text/html" href="http://www.goodtimes.jp/2010/07/17/toy-story-3/" />
		<id>http://www.goodtimes.jp/?p=287</id>
		<updated>2010-08-27T07:59:27Z</updated>
		<published>2010-07-17T06:07:27Z</published>
		<category scheme="http://www.goodtimes.jp" term="映画" /><category scheme="http://www.goodtimes.jp" term="娯楽" />		<summary type="html"><![CDATA[				トイストーリー3を3Dの字幕版で観てきました。もう最初から涙腺を壊されてしまって、涙、なみだ、ナミダ…。それをこらえようと、必死に歯を食いしばりながら映画を観たのは初めてです。
				とにかく話が良い。シリーズ [...]]]></summary>
		<content type="html" xml:base="http://www.goodtimes.jp/2010/07/17/toy-story-3/"><![CDATA[				<p>トイストーリー3を3Dの字幕版で観てきました。もう最初から涙腺を壊されてしまって、涙、なみだ、ナミダ…。それをこらえようと、必死に歯を食いしばりながら映画を観たのは初めてです。</p>
				<p>とにかく話が良い。シリーズ最高作といっても過言ではないでしょう。1と2を観ていない人は、是非それを観てから行ったほうが良いですよ。涙が多めに出ること必至です(･∀･)</p>
				<p>もう既に、妻とは来週末に日本語吹き替え版を観に行こうと予定を立てています。個人的には毎日でも観に行きたい！</p>
				<p><img src="http://www.goodtimes.jp/weblog/wp-content/uploads/20100717_01.jpg" alt="トイストーリー3" width="480" height="640" class="alignnone size-full wp-image-288" /></p>
]]></content>
		<link rel="replies" type="text/html" href="http://www.goodtimes.jp/2010/07/17/toy-story-3/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.goodtimes.jp/2010/07/17/toy-story-3/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	</entry>
		<entry>
		<author>
			<name>Tsunekichi</name>
						<uri>http://www.goodtimes.jp/</uri>
					</author>
		<title type="html"><![CDATA[Twitterがおかしなことになってる]]></title>
		<link rel="alternate" type="text/html" href="http://www.goodtimes.jp/2010/06/15/twitter-is-confused/" />
		<id>http://www.goodtimes.jp/?p=283</id>
		<updated>2010-08-27T07:59:28Z</updated>
		<published>2010-06-15T07:38:09Z</published>
		<category scheme="http://www.goodtimes.jp" term="Web" /><category scheme="http://www.goodtimes.jp" term="雑記" /><category scheme="http://www.goodtimes.jp" term="Twitter" />		<summary type="html"><![CDATA[				いつごろからか正確な時間帯は覚えていないけど、今日はTwitterがやたらと重たい。そして、人によっては1回しかツイートしていないのに、その内容が連続でポストされたりと非常に混乱している。現にボクのタイムラインは [...]]]></summary>
		<content type="html" xml:base="http://www.goodtimes.jp/2010/06/15/twitter-is-confused/"><![CDATA[				<p>いつごろからか正確な時間帯は覚えていないけど、今日はTwitterがやたらと重たい。そして、人によっては1回しかツイートしていないのに、その内容が連続でポストされたりと非常に混乱している。現にボクのタイムラインは、ある人のツイートで埋め尽くされているｗ</p>
				<p><a href="http://status.twitter.jp/">Twitter のステータス</a></p>
				<p>メンテナンスの影響のようだ。今日は様子見。</p>
]]></content>
		<link rel="replies" type="text/html" href="http://www.goodtimes.jp/2010/06/15/twitter-is-confused/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.goodtimes.jp/2010/06/15/twitter-is-confused/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>Tsunekichi</name>
						<uri>http://www.goodtimes.jp/</uri>
					</author>
		<title type="html"><![CDATA[学校給食のトレー]]></title>
		<link rel="alternate" type="text/html" href="http://www.goodtimes.jp/2010/04/12/school-lunch-tray/" />
		<id>http://www.goodtimes.jp/?p=280</id>
		<updated>2010-08-27T07:59:28Z</updated>
		<published>2010-04-12T14:17:52Z</published>
		<category scheme="http://www.goodtimes.jp" term="雑記" /><category scheme="http://www.goodtimes.jp" term="日常" />		<summary type="html"><![CDATA[				昨日の夕飯から早速使ってみた。いつもと違う食卓の風景は新鮮で良いですね。食後、20数年ぶりにトレーを洗うと小学校・中学校時代を思い出しました。「角のところヌルヌルする〜」とか。今まで以上に家での食事が楽しみになり [...]]]></summary>
		<content type="html" xml:base="http://www.goodtimes.jp/2010/04/12/school-lunch-tray/"><![CDATA[				<p>昨日の夕飯から早速使ってみた。いつもと違う食卓の風景は新鮮で良いですね。食後、20数年ぶりにトレーを洗うと小学校・中学校時代を思い出しました。「角のところヌルヌルする〜」とか。今まで以上に家での食事が楽しみになりそうです。</p>
				<p><img src="http://www.goodtimes.jp/weblog/wp-content/uploads/20100412_01-480x319.jpg" alt="学校給食のトレー" /></p>
]]></content>
		<link rel="replies" type="text/html" href="http://www.goodtimes.jp/2010/04/12/school-lunch-tray/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.goodtimes.jp/2010/04/12/school-lunch-tray/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
		<entry>
		<author>
			<name>Tsunekichi</name>
						<uri>http://www.goodtimes.jp/</uri>
					</author>
		<title type="html"><![CDATA[junque market@てだこホール]]></title>
		<link rel="alternate" type="text/html" href="http://www.goodtimes.jp/2010/04/11/junque-market-tedako-hall/" />
		<id>http://www.goodtimes.jp/?p=275</id>
		<updated>2010-08-27T07:59:28Z</updated>
		<published>2010-04-11T14:44:00Z</published>
		<category scheme="http://www.goodtimes.jp" term="雑記" /><category scheme="http://www.goodtimes.jp" term="休日" />		<summary type="html"><![CDATA[				浦添市のてだこホールで、junque market（ジャンクマーケット）があると妻から聞いていたので一緒に行ってきた。いやー、思った以上の人、ひと、ヒト。
				
				chou chouってお店で手に入れた [...]]]></summary>
		<content type="html" xml:base="http://www.goodtimes.jp/2010/04/11/junque-market-tedako-hall/"><![CDATA[				<p>浦添市のてだこホールで、junque market（ジャンクマーケット）があると妻から聞いていたので一緒に行ってきた。いやー、思った以上の人、ひと、ヒト。</p>
				<p><img src="http://www.goodtimes.jp/weblog/wp-content/uploads/20100411_02-480x319.jpg" alt="junque market@てだこホールの様子" width="480" height="319" /></p>
				<p><a href="http://shopchouchou.ti-da.net/">chou chou</a>ってお店で手に入れた昔懐かしの学校給食のトレー。30過ぎの二人にはツボのアイテムで、思わずゲット！</p>
				<p><img src="http://www.goodtimes.jp/weblog/wp-content/uploads/20100411_01-480x319.jpg" alt="味わいのあるトレー" width="480" height="319" /></p>
				<p>ひととおり会場内を歩いたあとは、<a href="http://shopchouchou.ti-da.net/">SU-SU-SOON</a>のジンジャーエールで渇きを潤す。生姜が効いていて、疲れがとれますね。</p>
				<p><img src="http://www.goodtimes.jp/weblog/wp-content/uploads/20100411_03-480x319.jpg" alt="ジンジャーエールで一休み" width="480" height="319" /></p>
				<p>帰り際にスタッフの方に「次回の開催予定は？」と尋ねたところ、未定とのことでした。ただ、<a href="http://nomi3.ti-da.net/">ブログ（junque market）</a><sup>*<a href="http://www.goodtimes.jp/2010/04/11/junque-market-tedako-hall/#footnote_0_275" id="identifier_0_275" class="footnote-link footnote-identifier-link" title="主催している方のブログはこちら">1</a></sup> で案内するそうなので興味のある方はチェックしてみては。今度行くときは優待券を確保して行きたいな。</p>
				<ol class="footnotes"><li id="footnote_0_275" class="footnote">主催している方の<a href="http://kota.ti-da.net/">ブログはこちら</a></li></ol>
]]></content>
		<link rel="replies" type="text/html" href="http://www.goodtimes.jp/2010/04/11/junque-market-tedako-hall/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.goodtimes.jp/2010/04/11/junque-market-tedako-hall/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	</entry>
	</feed>
