OK so I have my templates saved as text files and I just started to use dreamweaver to edit my templates, that works great. But when save the templates as text files or rather php, dreamweaver does not know how to handle the link to weblogcss.php and you cant edit it like normal css. Can you name the weblog or site style sheet with .css appended to the end and just link to that? This is in top of my templates and I am confused.
{assign_variable:master_weblog_name="myname"}
{assign_variable:template_group_name="myname"}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<LINK REL="Shortcut Icon" HREF="/images/tvp.ico" />
<title>{exp:weblog:weblog_name weblog="{master_weblog_name}"}</title>
<link rel=' type='text/css' media='all' href='weblog.css' />
<style type='text/css' media='screen'>
@import "{stylesheet={template_group_name}/weblog}";
</style>
<link rel="alternate" type="application/rss+xml" title="RSS" href="{path={template_group_name}/rss_2.0}" />
<link rel="alternate" type="application/atom+xml" title="Atom" href="{path={template_group_name}/rss_atom}" />Do i keep this
<link rel=' type='text/css' media='all' href='{stylesheet={template_group_name}/weblog}' />or do I link as above? should it be relative links or document?
Please foregive my ignorance, I have never saved the templates as files before and I am kind of use to a virtual method rather than physical.