Quote:
Originally Posted by Lynne
If you have static content for your page, you may just want to type it into the template directly. Using variables is usually something you'd only want to do if you are using php to define some text.
|
Okay thank you. Moving on from a basic block of text, what if I just want to make a basic HTML template within my custom page? For example:
Code:
<h1>My Title</h1>
My text
<ul>
<li>Cameras</li>
<ul>
<li>DSLRs</li>
<li>Point & Shoot</li>
</ul>
<li>Lenses</li>
<li>Etc.</li>
</ul>
More text.
<a href="mailto:myemail">My Email</a>
How would I set the template/php page up? In other words, you had me place {vb:raw imghost_content} just to put "I am here," what kind of variable would I need to add to construct a basic HTML page?
Thanks again!!