First thanks so much for answering. I was beginning to wonder if I was making any sense.
I think what you have said starts to answer my problem. Let me see if I can give more detail.
For the website I have a template for each page, such as “index” for the homepage, “about” for the about page, “classes” for the classes clinics page, etc.
For the index template, I use two weblogs to feed it data. They are “Home Content” and “Home Rightbar”. For the about template, I have weblogs called “Classes Content” and Classes Rightbar” and so forth for every page.
Many of the “Content” weblogs have the same entry fields. All but one of the “Rightbar” weblogs have exactly the same entry fields. Isn’t this redundant? Could I feed all the templates from one or two weblogs? If so, what code would allow me to do it?
Here is the code from “classes” template
{embed="embeded/html_header"}
<body id="body_classes">
<div id="wrapper">
{embed="embeded/header_nav"}
{embed="embeded/sidebar_nav"}
<div id="content">
<div id="column522">
{embed="embeded/classes_intro"}
<hr >
{exp:weblog:entries weblog="class_content" limit="" disable="categories|members_data|pagination|trackbacks" sort="asc"}
{class_photo}
<h5 class="headBack">{class_heading}</h5>
{class_description}
<table class="classes">{class_table}</table>
<hr >
{/exp:weblog:entries}
<div>/div>
</div><!-- end #column522 -->
<div id="column220">
<div class="boxFirst">
{embed="embeded/classes_clinicIntro"}
{exp:weblog:entries weblog="class_rightbar" limit="" disable="categories|members_data|pagination|trackbacks" sort="asc"}
<br>
{if referenceHead !=""}
<h6>{referenceHead}</h6>
<p>{/if}</p><h5>{title}</h5>
<p>{teaserContent}<br />
{if second_photo !=""}<br />
{second_photo}<br />
{/if}<br />
{/exp:weblog:entries}</p>
<p></div><!-- end .box --><br />
<br />
</div><!-- end #column220 --><br />
<br />
<div class="clear"></div></p>
<p>{embed="embeded/footer"}<br />
<br />
</div><!-- end #content --><br />
<br />
</div><!-- end #wrapper --><br />
</body></p>
<p></html>
If I replace “{exp:weblog:entries weblog="class_content". . ." with the coding below, then put classes in the title entry (which create a url) of a weblog or channel, will the template coding create a page?
{exp:weblog:entries weblog="{segment_3}" limit="10"}
<h2>{title}</h2>
<p>{body}<br />
{/exp:weblog:entries}
It seems like more is needed, like if this says “homepage” then create a homepage.
Several of my templates are the same. Can I make two or three pages from one template, feeding from the one or two weblogs? I am wondering if I can make the site work with just three main templates. Is this confusing? If so, let me know what information I can supply.
Thanks much again.
Paul