{{#if no-result}}
	{{{no-result}}}
{{/if}}

{{#each articles}}
	<article class="accordion-item" tabindex="-1">
		<header>
			<h1 class="accordion-header">
				<a href="#{{id}}" data-type="toggle" aria-controls="{{id}}" aria-expanded="false" class="label" role="button" data-toggletext="{{header}}<span class='subheader'>{{answer-stats}}</span> <span class='icon' aria-hidden='true'>–</span>">
					{{header}} <span class="icon" aria-hidden='true'>+</span>
					<span class="subheader">{{answer-stats}}</span>
				</a>
			</h1>
		</header>

		<div id="{{id}}" class="expandable accordion-content" aria-hidden="true">
			{{#if question}}
				<p class="preamble small padding-bottom-half">{{question}}</p>
			{{/if}}
			{{#each politicians}}
				<div class="media ask-politicans-answer{{#if answer-class}} {{answer-class}}{{/if}}">
					<div class="media-image">
						<img src={{image.src}} alt="{{image.alt}}" />
					</div>
					<div class="media-body t-rte t-small">
						<h2 class="h-related">{{name}}</h2>
						<p><em>{{answer-state}}</em></p>
						{{{answer}}}
					</div>
				</div>
			{{/each}}
		</div>
	</article>
{{/each}}