<p>This is articles.vm</p>

#if ($!data.Parameters.getString("article-id"))

	<b><p>This is the title for article $!data.Parameters.getString("article-id")</p></b>

	<p>This is the body for the feature.  You would expect an essay or discussion of some sort.  You would also expect it to be long enough to fill up the page.  This placeholder isn't long enough to do a feature justice, but it at least gives an idea of what a real feature would look like.</p>

	<a href=$jslink.getTemplate()>Back</a>
#else

	#foreach ($i in [1..5])
	<p>
	<b>This is the title for article $i</b><br>
	This is the summary. This is the summary. This is the summary. This is the summary. This is the summary. This is the summary. This is the summary. This is the summary. This is the summary. This is the summary.
	<br>
	<a href=$jslink.getTemplate().addQueryData("article-id", "$i")>more</a>
	</p>
	#end

#end

