Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
LPS-50032
Browse files Browse the repository at this point in the history
  • Loading branch information
ealonso committed Sep 23, 2014
1 parent 5886d38 commit d795b79
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#end

<div class="article-description-wrapper">
#if ($article-title != "")
#if ($article-title.getData() != "")
<h4 class="article-title"><a href="$article-url"><span>$article-title.getData()</span></a></h4>
#end

Expand Down
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
<div class="article-wrapper">
#if ($article-title != "")
#if ($article-title.getData() != "")
<h3 class="article-title">$article-title.getData()</h3>
#end

#if ($show-display-date)
#if ($show-display-date.getData() == true)
<div class="article-information">
<span class="article-display-date">Published on $reserved-article-display-date.getData()</span>
</div>
#end

#if ($article-main-image != "")
#if ($article-main-image.getData() != "")
<div class="article-main-image">
<img alt="$article-title.getData()" src="$article-main-image.getData()" />
</div>
#end

#if ($article-body != "")
#if ($article-body.getData() != "")
<div class="article-body">
$article-body.getData()
</div>
#end

#if ($show-author)
#if ($show-author.getData() == true)
<div class="author-info">
<span class="article-author">$reserved-article-author-name.getData() </span>

Expand Down

0 comments on commit d795b79

Please sign in to comment.