| 1 | <?php |
|---|
| 2 | echo '<?xml version="1.0"?>'; |
|---|
| 3 | echo $html->docType(); |
|---|
| 4 | ?> |
|---|
| 5 | |
|---|
| 6 | <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> |
|---|
| 7 | <head><title>Karamelo :: <?php echo $title_for_layout?></title> |
|---|
| 8 | |
|---|
| 9 | <?php |
|---|
| 10 | if ( isset($javascript) ): |
|---|
| 11 | echo $html->charset('UTF-8'); |
|---|
| 12 | echo $javascript->link('prototype'); |
|---|
| 13 | echo $javascript->link('scriptaculous.js?load=effects'); |
|---|
| 14 | endif; |
|---|
| 15 | ?> |
|---|
| 16 | |
|---|
| 17 | <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> |
|---|
| 18 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|---|
| 19 | <style type="text/css"> |
|---|
| 20 | <!-- |
|---|
| 21 | img{border:0} |
|---|
| 22 | body { |
|---|
| 23 | background:#fff url(/img/static/help_bg.png) top repeat-x; |
|---|
| 24 | margin:3pt;font-family: Arial, Verdana, Helvetica, Tahoma;} |
|---|
| 25 | .title_section { |
|---|
| 26 | color:#cc0033; |
|---|
| 27 | border-bottom:dotted 1px gray; |
|---|
| 28 | font-size:12pt; |
|---|
| 29 | margin:7px 0 7px 0; |
|---|
| 30 | padding:3px; |
|---|
| 31 | font-fasmily:verdana; |
|---|
| 32 | } |
|---|
| 33 | .der {text-align:right;font-weight:bold;font-size:9pt;} |
|---|
| 34 | #container {text-align:left;font-size:10pt;width:350px;margin-left:auto;margin-right:auto;} |
|---|
| 35 | .titulo {border-bottom:1px #268698 solid; padding:5px;color:#268698;font-size:16pt;} |
|---|
| 36 | #marco {border:1px grey solid;padding:5px;color:#268698;background-color:#dadada;font-size:10pt;width:80%;margin:5px auto 2px auto;} |
|---|
| 37 | .warning {color:red;font-size:10px;text-align:left;} |
|---|
| 38 | button {background-color:orange;color:#fff;border:1px solid gray;font-size:8pt;padding:5px;} |
|---|
| 39 | input {background-color:#eda2bb;color:#000;border:1px solid gray;font-size:7pt;padding:1px;} |
|---|
| 40 | --> |
|---|
| 41 | </style> |
|---|
| 42 | </head> |
|---|
| 43 | <body id="cuerpo"> |
|---|
| 44 | <?php echo $content_for_layout ?> |
|---|
| 45 | <br /> |
|---|
| 46 | <?php echo $html->link($html->image('static/help.gif', array("alt"=>"Help index")), '/helps/index', null, null, false); ?> |
|---|
| 47 | </body> |
|---|
| 48 | |
|---|
| 49 | </html> |
|---|