|
Posted by John Salerno on 02/02/06 21:27
Steve Pugh wrote:
> Maybe if you told us how you
> would like to use templates we can tell you whether DW's templating
> system is right for you.
Yeah, that might help. Basically I just want to be able to start with
some pre-defined markup, like the DTD, the <head> and <body> tags, etc.
But I'd like all this to simply be text in my document that I can change
if I want. Here's what I use right now when I make a new file:
-------------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title></title>
</head>
<body>
</body>
</html>
--------------------
In some cases I also have extra <meta> tags that are commented out, in
case I'd like to uncomment them and use them. Also, I always need to put
in a title, so I can't have that part "locked".
Maybe this is too simple for DW templates.
[Back to original message]
|