1:<html>
   2:{config_load file="txt.txt"}
   3:    <head>
   4:        <title>
   5:            {#Title#}
   6:        </title>
   7:
   8:        {literal}
   9:            <style>
  10:                body {font-family:verdana, tahoma;}
  11:                h1 {font-size:18px;}
  12:                h2 {font-size:16px;}
  13:                h3 {font-size:14px;}
  14:                p {font-size:12px;}
  15:                a, td {font-family:verdana, tahoma;
  16:                    font-size:12px;}
  17:            </style>
  18:        {/literal}
  19:
  20:    </head>
  21:    <body>
  22:        <h1>{#Intro#}<h1>
  23:        <table style="border: 1px dotted gray;" cellspacing="0" cellspadding="0" width="70%">
  24:            <tr>
  25:                <td width="30%" valign="top" style="border: 1px dotted gray;">{#Menu#}<br/>
  26:                    <h2 style="display:inline">{#Dynamic_data#}</h2>
  27:                    <div style="border: 1px solid red">
  28:                    {dynamic}
  29:                        {$menu}
  30:                    {/dynamic}
  31:                    </div>
  32:                    <div style="border: 1px solid blue">
  33:                        <p>{#Plugins#}</p>
  34:
  35:                        <p>
  36:                            {#selectdate#}<br/>
  37:                            {html_select_date}
  38:                        </p>
  39:
  40:                        <p>
  41:                            {#selectime#}<br/>
  42:                            {html_select_time use_24_hours=true}
  43:                        </p>
  44:
  45:                        <p>{#table#}
  46:                            {html_table loop=$data cols=4 tr_attr=$tr}<br/>
  47:                        </p>
  48:
  49:                        <p>{#Threeofthesame#}</p>
  50:                        <select name=customer_id>
  51:                            {html_options options=$cust_options selected=$customer_id}
  52:                        </select><br/><br/>
  53:                        {html_checkboxes name="id" options=$cust_options  selected=$customer_id separator="<br />"}<br/><br/>
  54:                        {html_radios name="id" options=$cust_options selected=$customer_id separator="<br />"}
  55:                    </div>
  56:
  57:                    <p>{#timewhencached#}<br/>
  58:                        {$smarty.now|date_format:"%A, %B %e, %Y"}<br/>
  59:                        {$smarty.now|date_format:"%H:%M:%S"}
  60:                    </p>
  61:
  62:                </td>
  63:                <td valign="top" style="text-align:justify; padding:10 px;">
  64:
  65:                    {section name="content" show=$content}
  66:                        <h2>{#Content#}</h2>
  67:                        <p style="padding:10px;">{$content|nl2br}</p>
  68:                    {/section}
  69:
  70:                    {if $content eq ''}
  71:                        <p>{#Nocontent#}<p>
  72:                    {/if}
  73:
  74:                </td>
  75:            </tr>
  76:        </table>
  77:    </body>
  78:</html>