EXAMPLE
<a href="#" $viewlink>Read More</a>
*Note: The # in the href of the link is just a place holder for a non-functional link. When you click on a link like this, nothing will happen. But regarless if it's a plae holder or a link perhaps to a static html file, it will be converted to a link that goes to the blog post.
ORIGINAL CODE
<div id="post"> <img src="images/photo1.jpg" alt="" /> <p>New services we offer</p> <span class="date">2.13.2013</span> <span class="summary">We've recently introuduced some new exciting services</span> <a href="#">Read More</a>
<img src="images/photo2.jpg" alt="" /> <p>New services we offer</p> <span class="date">2.13.2013</span> <span class="summary">We've recently introuduced some new exciting services</span> <a href="#">Read More</a> <img src="images/photo3.jpg" alt="" /> <p>New services we offer</p> <span class="date">2.13.2013</span> <span class="summary">We've recently introuduced some new exciting services</span> <a href="#">Read More</a> </div> AFTER
<div id="post">
<$blog maxrows="3" tagid="post"> <img src="images/photo[].jpg" alt="" $image> <p $topic>New services we offer</p> <span class="date" $date dateformat="mm/dd/yyyy">2.13.2013</span> <span class="summary" $summary>We've recently introuduced some new exciting services</span> <a href="#" $viewlink>Read More</a> <$blog>
</div>
|