Hello, very new to EE and still trying to figure out how the weblogs templates work. Sorry if this has been answered before, I can’t seem to find anything related to my problem here on the forums.
I’m building our our new site using the following weblog code:
{exp:weblog:category_heading weblog="{my_weblog}"}
<h2>{category_name}</h2>
<p>{if category_description}<br />
{category_description}<br />
{/if}<br />
{/exp:weblog:category_heading}</p>
<p><br />
{exp:weblog:entries weblog="{my_weblog}" orderby="date" sort="desc" limit="15" disable="member_data|trackbacks"}</p>
<p><br />
{date_heading}<br />
<h3 class="date">{entry_date format=' %l, %F %d, %Y '}</h3><br />
{/date_heading}</p>
<p><h2 class="title">{title}</h2><br />
{summary}</p>
<p>{body}</p>
<p>{extended}</p>
<p><div class="posted">Posted by {author} on {entry_date format='%m/%d'} at {entry_date format='%h:%i %A'}</p>
<p><br />
{categories}<br />
<a href="http://{path=site_index}">{category_name}</a> •<br />
{/categories}</p>
<p>{if allow_comments}<br />
({comment_total}) <a href="http://{url_title_path=">Comments</a> •<br />
{/if}</p>
<p>{if allow_trackbacks}<br />
({trackback_total}) <a href="http://{trackback_path=">Trackbacks</a> •<br />
{/if}<br />
<a href="http://{title_permalink={my_template_group}/index}">Permalink</a> </p>
<p> </p>
<p> </p>
<p>{paginate}<br />
<span class="pagecount">Page {current_page} of {total_pages} pages</span> {pagination_links}<br />
{/paginate}</p>
<p> </p>
<p>{/exp:weblog:entries}What I WANT TO DO is create a link to allow the user to READ MORE rather than posting the entire article into the front page. I can’t for the life of me figure it out.
Example: http://dev.thereader.com
Thanks in advance for your help!