<?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>jinja2 | Python学習講座</title>
	<atom:link href="https://www.python.ambitious-engineer.com/archives/category/application/third-party/jinja2/feed" rel="self" type="application/rss+xml" />
	<link>https://www.python.ambitious-engineer.com</link>
	<description>PythonエンジニアによるPython3学習サイト</description>
	<lastBuildDate>Sun, 02 Apr 2017 09:26:00 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://www.python.ambitious-engineer.com/wp-content/uploads/2020/05/favicon2-32.png</url>
	<title>jinja2 | Python学習講座</title>
	<link>https://www.python.ambitious-engineer.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>jinja2 入門 その6 テンプレートの継承</title>
		<link>https://www.python.ambitious-engineer.com/archives/809</link>
		
		<dc:creator><![CDATA[Kuro-Chan]]></dc:creator>
		<pubDate>Sun, 02 Apr 2017 09:25:37 +0000</pubDate>
				<category><![CDATA[jinja2]]></category>
		<guid isPermaLink="false">http://www.python.ambitious-engineer.com/?p=809</guid>

					<description><![CDATA[<p>Webアプリケーションを作成する際、画面ごとにhtmlを全てコーディングすることはあまりなく、大枠のテンプレートをbaseテンプレート(親テンプレート)として用意し、個別画面は親テンプレートを継承して画面ごとの可変項目の...</p>
<p>The post <a href="https://www.python.ambitious-engineer.com/archives/809">jinja2 入門 その6 テンプレートの継承</a> first appeared on <a href="https://www.python.ambitious-engineer.com">Python学習講座</a>.</p>]]></description>
		
		
		
			</item>
		<item>
		<title>jinja2 入門 その5 マクロとインポート</title>
		<link>https://www.python.ambitious-engineer.com/archives/789</link>
		
		<dc:creator><![CDATA[Kuro-Chan]]></dc:creator>
		<pubDate>Thu, 30 Mar 2017 14:08:27 +0000</pubDate>
				<category><![CDATA[jinja2]]></category>
		<guid isPermaLink="false">http://www.python.ambitious-engineer.com/?p=789</guid>

					<description><![CDATA[<p>前回の続きで今回はマクロについて学習します。railsライクなWebフレームワークにはhelperと呼ばれるhtmlの定型文を出力機能がありますが、jinja2のマクロを使用するとそのhelperのような定型文出力の自動...</p>
<p>The post <a href="https://www.python.ambitious-engineer.com/archives/789">jinja2 入門 その5 マクロとインポート</a> first appeared on <a href="https://www.python.ambitious-engineer.com">Python学習講座</a>.</p>]]></description>
		
		
		
			</item>
		<item>
		<title>jinja2入門 その4 テンプレートの部品化</title>
		<link>https://www.python.ambitious-engineer.com/archives/797</link>
		
		<dc:creator><![CDATA[Kuro-Chan]]></dc:creator>
		<pubDate>Fri, 31 Mar 2017 14:42:58 +0000</pubDate>
				<category><![CDATA[jinja2]]></category>
		<guid isPermaLink="false">http://www.python.ambitious-engineer.com/?p=797</guid>

					<description><![CDATA[<p>ある程度規模のあるwebシステムを構築する際、ヘッダーやグローバルナビ、ページャー、フッターなどの共通項目は部品化して使い回すことが一般的です。jinja2にはインクルードと呼ばれるテンプレート分割機能があります。 イン...</p>
<p>The post <a href="https://www.python.ambitious-engineer.com/archives/797">jinja2入門 その4 テンプレートの部品化</a> first appeared on <a href="https://www.python.ambitious-engineer.com">Python学習講座</a>.</p>]]></description>
		
		
		
			</item>
		<item>
		<title>jinja2入門 その3 フィルタ</title>
		<link>https://www.python.ambitious-engineer.com/archives/785</link>
		
		<dc:creator><![CDATA[Kuro-Chan]]></dc:creator>
		<pubDate>Wed, 29 Mar 2017 13:28:46 +0000</pubDate>
				<category><![CDATA[jinja2]]></category>
		<guid isPermaLink="false">http://www.python.ambitious-engineer.com/?p=785</guid>

					<description><![CDATA[<p>前回の続きです。jinja2は出力文字列に対しhtmlエスケープ等の加工処理を付加することができます。また、Linuxコマンドのパイプのように処理をつなげることができます。様々な組込みフィルタが用意されていますが、自作す...</p>
<p>The post <a href="https://www.python.ambitious-engineer.com/archives/785">jinja2入門 その3 フィルタ</a> first appeared on <a href="https://www.python.ambitious-engineer.com">Python学習講座</a>.</p>]]></description>
		
		
		
			</item>
		<item>
		<title>jinja2入門 その2</title>
		<link>https://www.python.ambitious-engineer.com/archives/776</link>
		
		<dc:creator><![CDATA[Kuro-Chan]]></dc:creator>
		<pubDate>Tue, 28 Mar 2017 13:07:13 +0000</pubDate>
				<category><![CDATA[jinja2]]></category>
		<guid isPermaLink="false">http://www.python.ambitious-engineer.com/?p=776</guid>

					<description><![CDATA[<p>前回の続きです。今回はテンプレートの記法についてもう少し踏み込んだ内容を学習しましょう。 空白行の制御 trim_blocksとlstrip_blocks テンプレートブロックはレンダリング時に空白行に置換されます。tr...</p>
<p>The post <a href="https://www.python.ambitious-engineer.com/archives/776">jinja2入門 その2</a> first appeared on <a href="https://www.python.ambitious-engineer.com">Python学習講座</a>.</p>]]></description>
		
		
		
			</item>
		<item>
		<title>jinja2入門 その1</title>
		<link>https://www.python.ambitious-engineer.com/archives/760</link>
		
		<dc:creator><![CDATA[Kuro-Chan]]></dc:creator>
		<pubDate>Sun, 26 Mar 2017 12:29:41 +0000</pubDate>
				<category><![CDATA[jinja2]]></category>
		<guid isPermaLink="false">http://www.python.ambitious-engineer.com/?p=760</guid>

					<description><![CDATA[<p>このページではテンプレートエンジンの１つ、jinja2について学習します。まずは入門ということでざっくりと概要について学習しましょう。 jinja2とは jinja2とはpythonのweb開発でよく使用されるテンプレー...</p>
<p>The post <a href="https://www.python.ambitious-engineer.com/archives/760">jinja2入門 その1</a> first appeared on <a href="https://www.python.ambitious-engineer.com">Python学習講座</a>.</p>]]></description>
		
		
		
			</item>
	</channel>
</rss>
