Skip to content

Instantly share code, notes, and snippets.

@taywils
Last active December 28, 2015 09:39
Show Gist options
  • Save taywils/7480504 to your computer and use it in GitHub Desktop.
Save taywils/7480504 to your computer and use it in GitHub Desktop.
spark_view_step_2_3
<#if hasNoArticles??>
<div class="starter-template">
<h1>${hasNoArticles}</h1>
</div>
<#else>
<div class="starter-template">
<#list articles as article>
<h3>${article.getTitle()}</h3>
<h4>${article.getCreatedAt()}</h4>
<h4>${article.getSummaryLink()}</h4>
<h4>${article.getEditLink()} | ${article.getDeleteLink()}</h4>
</#list>
</div>
</#if>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment