2 Columns to display my articles

2 posts by 2 authors in: Forums > CMS Builder
Last Post: July 17, 2012   (RSS)

By Jesus - July 17, 2012 - edited: July 17, 2012

Hello,

Back on AM2 I used to had 2 columns (articleList template) in order to display my articles (10 per page) using this code:

<table border="0" cellspacing="2" cellpadding="1">
<tr>
<!-- template insert : $articleList$ -->
<!-- templatecell : articleRow -->
<td valign="top" width="50%" class="text_place">
<!-- templateIf : $article.externalLink$ eq "" -->
<a href="$published.articlePage.url$" class="biglink" title="$article.title$"><h3>$article.title$</h3></a>
<a href="$published.articlePage.url$" class="biglinkblack" title="$article.PromoTitle$">$article.PromoTitle$</a>
<p>$article.summary$&nbsp;&nbsp;<a href="$published.articlePage.url$" class="green" title="Presione aqui para ingresar ">Presione aqui para ingresar</a></p>
<!-- /templateIf -->
<!-- templateIf : $article.externalLink$ ne "" -->
<a href="$article.externalLink$" class="biglink" title="$article.title$"><h3>$article.title$</h3></a>
<a href="$article.externalLink$" class="biglinkblack" title="$article.PromoTitle$">$article.PromoTitle$</a>
<p>$article.summary$&nbsp;&nbsp;<a href="$article.externalLink$" class="green" title="Presione aqui para ingresar ">Presione aqui para ingresar</a></p>
<!-- /templateIf -->
</td>
<!-- templateIf: $articleList.currentResultCounter$ isMultipleOf "2" --></tr><tr><td colspan="2"class="mr_clear_brd" width="100%">&nbsp;</td></tr><tr><!-- /templateIf -->
<!-- /templatecell : articleRow -->
</tr>
</table>


Is it possible to convert this code to work with CMS?

Thanks!