Last active
December 28, 2015 09:39
-
-
Save taywils/7480504 to your computer and use it in GitHub Desktop.
spark_view_step_2_3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<#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