Web Files
To dynamize your web files, that include *.htm, *.html, *.pl and *.php files, you have to add new lines to the places where you want to exchange parts of the source code. These comments are used as identifiers. A HTML part, for example, starts with “<!-- 1-abc.net …” and ends with “<!-- 1-abc.net … end -->”, with “…” as the identification words of the part you want to make configurable. Both lines don’t have any influence on the browser’s behaviour because they are understood as comments.
Example:
<html>
<head>
<!-- 1-abc.net Title -->
<title>My website!</title>
<!-- 1-abc.net Title end -->
</head>
</html>
This very simple website does not do anything else than opening a page with the title “My website!”. Line 3 and 5 allow 1-abc.net WebDynamicer to make changes to these parts, if a template file includes the identifier “<!-- 1-abc.net Title --> and the end mark too. |