Publishers of technology books, eBooks, and videos for creative people

Home > Articles > Web Design & Development > Adobe Dreamweaver

Using Dreamweaver Template Expressions

📄 Contents

  1. Using Template Expressions
  2. About This Article
Discover how Dreamweaver MX's new template expressions feature offers a great deal of flexibility and power. Dreamweaver MX introduces several extremely powerful template features, including optional regions, repeating regions, and nested templates. You can even use template expressions as the base for a linear navigation system, as you'll see in this article.
Like this article? We recommend

Like this article? We recommend

Using Template Expressions

Dreamweaver MX introduced several extremely powerful template features, including optional regions, repeating regions, and nested templates. Although more obscure than these high-profile options, the new template expressions feature offers a great deal of flexibility and power. You can even use template expressions as the base for a linear navigation system, as you'll see in this section.

In essence, a template expression is a variable or parameter established in the template that can be set independently in each template-derived document or instance. There are several types of template parameters: boolean (true/false), text, number, color, or URL. When entered into the template, the TemplateParam tag is used:

<!-- TemplateParam name="saleURL" type="URL" value="../sale/special.htm" -->
<!-- TemplateParam name="onsale" type="boolean" value="true" -->

If entered by hand, TemplateParam code should be placed in the <head> section. The user interface for creating template parameters is somewhat hidden. This type of code is also generated whenever an editable attribute is created.

After the template parameter is set up, we can place references to the parameter, known as template expressions, anywhere in the page. Template expressions are written in two ways:

  • As a comment:

<!-- TemplateExpr: expr = "onsale"-->
  • As a parenthetical:

@@(onsale)@@

The two formats are interchangeable; I typically use the parenthetical format for two reasons. First, it's shorter and quicker to write. Second, it has the advantage of displaying in the Design view with its own symbol, as seen in Figure 1. This symbol can be seen only when Invisible Elements is turned on.

Figure 1Figure 1 Template expressions should be hand-coded or entered through the Property inspector; use the parenthetical syntax to display a special template expressions symbol.

When Dreamweaver makes an instance of a template that contains a template expression, the code syntax changes. The TemplateParam tag becomes an InstanceParam tag:

<!-- InstanceParam name="saleURL" type="URL" value="sale/special.htm" -->
<!-- InstanceParam name="onsale" type="boolean" value="true" -->

Any template expressions that are embedded in the template are displayed with their current values in the code. For example, a link using the saleURL parameter would look like this:

<a href="sale/special.htm">On Sale Now!</a>

To change the parameter's value, choose Modify > Template Properties. The Template Properties dialog box (see Figure 2) contains a list of all the template parameters in the current page. Select any entry and alter the fields that follow as needed. Most of the template parameter types (text, number, and URL) use text fields. Boolean type parameters use a check box to show or not show the parameter; color type parameters offer a color picker.

Figure 2Figure 2 We must make all modifications to template parameters through the Template Properties dialog box. Changes we make by hand are not recognized until the Template Properties dialog box is opened.

Preparing the Template

The strategy described in this section for creating navigation links using template parameters and expressions relies on files with sequentially numbered names, such as tutorial1.htm, tutorial2.htm, and so on. After the basic naming scheme has been established, the template is ready to be prepared. Here's how the process works:

  1. A template parameter is inserted into the template <head> section either by hand or by creating an editable attribute. This parameter holds the number in the filename sequence of the current page.

  2. Evaluated template expressions, based on the template parameter, are entered as href values in the Previous and Next links.

  3. In the template-derived document, the template parameter is updated to reflect the instance's filename number. For example, the parameter for tutorial5.htm would be 5.

Although steps 1 and 2 only need to be performed one per template, step 3 is performed for each instance of the template that is created. However, because each instance needs custom attention anyway to add individual content, changing the template parameter value is not really an onerous burden.

The following procedure assumes that you are familiar with templates in general and have, for the sake of discussion, created a template with both Previous and Next links (either text or graphics). Best practice dictates that the navigation links in this technique would be placed in a locked, noneditable region. That's because you want to keep the navigation constant after all, although it's possible to insert them into an editable region.

Entering the Template Parameter

As mentioned earlier, template parameters are either entered by hand or by using Dreamweaver's editable attribute user interface. If the template parameter is entered manually, place this code in the <head> section:

<!-- TemplateParam name="currentFile" type="number" value="1" -->

This code creates a template parameter named baseLink with a default value of 1. To create the same code via Dreamweaver's point-and-click interface, follow these steps:

  1. From the Tag Selector, choose the <a> tag surrounding the Previous text or button.

  2. Select Modify > Templates > Make Attribute Editable.

  3. In the Editable Tag Attributes dialog box (see Figure 3), select Add (+) and then enter an attribute name, such as thefilenum.

    The attribute name is used for setup purposes. Naturally, you want to select an attribute name that browsers will ignore rather than a real attribute.

    Figure 3Figure 3 All modifications to template parameters must be made through the Template Properties dialog box. Changes made by hand are not recognized until the Template Properties dialog box opens.

  4. Make sure that Make Attribute Editable is selected.

  5. In the Label field, enter the name that you want the template parameter being established to have.

    In this example, I'm using currentFile as the template parameter name.

  6. From the drop-down list, choose Number as the attribute type.

  7. In the Default field, enter a number. This number should be an integer for easy calculation; in this example, I entered the number 1.

After you click OK, Dreamweaver writes the template parameter code seen previously:

<!-- TemplateParam name="currentFile" type="number" value="1" -->

Dreamweaver also includes the dummy attribute created in the <a> tag:

thefilenum="@@(currentFile)@@"

You're free at this point to delete the false attribute and its value; the important code—the template parameter—remains in the document regardless of whether the attribute is removed.

Automating the Link Creation

In this next step, the previously established template parameter is added to each of the navigation links in slightly different formulas. One of the most powerful aspects of template expressions is that they are evaluated at design time. Numerous types of operations, including mathematical, string, and binary, are available for use. This example combines both math and string concatenation to create links to both the previous and next pages in the sequence.

Here are the steps necessary for inserting a template expression as a navigation link:

  1. On the template page, select the Next button or text link.

  2. In the Property inspector, enter code similar to the following in the Link field:

    @@('template' + (currentFile + 1) + '.htm')@@

    In this example, the sequential files are all within the same folder and named template1.htm, template2.htm, and so on. My template parameter, defined in the previous section, is called currentFile. Note that single rather than double quotes are used; this is done because the entire template expression is enclosed in quotes in the <a> tag:

    <a href="@@('template' + (currentFile + 1) + '.htm')@@">NEXT</a>
  3. Select the Previous button to perform a similar operation.

  4. In the Link field, enter code like this:

    @@('template' + (currentFile - 1) + '.htm')@@

    For the Previous link, instead of adding a number to the base value, as was done for the Next link, one is subtracted.

    TIP

    Want to make your navigation really slick? Use Dreamweaver MX's optional region feature to hide the Previous link if the template parameter was set to 1; in that circumstance, there is no previous page. Likewise, if you know the number of the final page in the series, wrap an optional region around the Next link to hide it when the template parameter is equal to the last value.

Setting the Instance Parameter

Now that the template work is done, all that is left is to set the parameter for each instance. Although it might sound burdensome, it's a fairly straightforward operation that you can accomplish right after the file is created from the template.

NOTE

Be sure to save your template before proceeding to the next series of steps. If you have already created one or more instances, update the files as requested by Dreamweaver after the save.

  1. Select Modify > Template Properties.

  2. In the Template Properties dialog box, choose the parameter set up in the template.

    In our example, the parameter would be currentFile.

  3. In the text field, insert the number that matches the value in the filename of the current page.

    For example, if the file is template23.htm, enter 23.

After you close the Template Properties dialog box, check the code. Where the template expressions were inserted in the Next and Previous links, the fully resolved filenames appear. With a value of 23 for the parameter, the code will be similar to this:

Previous - Next

If the links are not being formed correctly, check to make sure that you defined the template parameter as a number.

Peachpit Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from Peachpit and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about Peachpit products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites; develop new products and services; conduct educational research; and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email ask@peachpit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by Adobe Press. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.peachpit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020