Well thanks for that. I’m all set there now. The templates display just fine now. I created a test template and it looks good. I am still having an issue with the embed now and I don’t think it has to do with the fix that you just gave me in the kb. Here’s why:
My template is this:
<head>
<title>{exp:weblog:info weblog="{my_weblog}"}{blog_title}{/exp:weblog:info}</title>
<meta http-equiv="Content-Type" content="text/html; charset={charset}" />
<link rel='stylesheet' type='text/css' media='all' href='{stylesheet={my_template_group}/style_css}' />
<style type='text/css' media='screen'>@import "{stylesheet={my_template_group}/style_css}";</style>
<link rel="alternate" type="application/rss+xml" title="RSS" href="{path={my_template_group}/rss_2.0}" />
<link rel="alternate" type="application/atom+xml" title="Atom" href="{path={my_template_group}/atom}" />
</head>
Which is displaying this:
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel='stylesheet' type='text/css' media='all' href='http://dev.stpetersbeerg.com/index.php?css={my_template_group/style_css}' />
<style type='text/css' media='screen'>@import "http://dev.stpetersbeerg.com/index.php?css={my_template_group/style_css}";</style>
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://dev.stpetersbeerg.com/index.php/{my_template_group//rss_2.0}" />
<link rel="alternate" type="application/atom+xml" title="Atom" href="http://dev.stpetersbeerg.com/index.php/{my_template_group//atom}" />
</head>
Which means my title and my meta information are working just great, but it can’t for some reason, interpret my css pages. For the record, my css pages are in the same template group. So I’m having a hard time understanding what’s going on.
Why would it parse some of the ee tags and not others?
You’ve been very helpful thus far. Thanks a heap.