Yeah that would work for that one particular entry, but I need it to be dynamic in that it automatically picks up the URL from the new post, if that’s possible I don’t know?
I’ll just show you what I’m working with. The site is HERE
On the homepage you can see I’ve got two weblogs set up (featured article, featured course). On the homepage, the most recent articles from each of these weblogs are displayed in summary form on the homepage. When the visitor clicks the entry title or the “continue reading” link it takes them to the full article entry which uses my “blog/article” template. Both the “featured article” and “featured course” weblogs use the “blog/article” template to show the full article entry. Below is an example of what I’ve used on my homepage to display the most recent “featured article” summary:
{exp:weblog:entries weblog="featuredarticle" limit="1" disable="pagination|member_data|trackbacks"}
<h2>FEATURED ARTICLE</h2>
<h3><a href="{title_permalink=blog/article}" title="{title}">{title}</a></h3>
<ul class="commenttimeauthor">
<li class="by">By {featured_writtenby} on {entry_date format="%F %j, %Y"}</li>
<li class="comment">{if comment_total > 0}<a href="http://www.kentuckygolfing.com/#commentform" title="{comment_total} Comments on This Article">{comment_total} Comments on This Article</a>{if:else}<a href="http://www.kentuckygolfing.com/blog/article/#commentform" title="Add a Comment">Add a Comment</a>{/if}</li>
</ul>
{featured_summary}
<p class="readmore"><a href="{title_permalink="blog/article}" title="Continue Reading {title}">Continue Reading</a></p>
{/exp:weblog:entries}
Thanks