[1737] | 1 | <!-- a header_lib macro --> |
---|
| 2 | <!-- $Id: header_lib_header.pt 31116 2005-12-30 10:56:31Z lregebro $ --> |
---|
| 3 | |
---|
| 4 | <!-- |
---|
| 5 | Here is the CSS loading logic: |
---|
| 6 | - default.css follows the CSS2 spec. |
---|
| 7 | - msie.css is used and read *only* by MSIE. This is the place to put instructions |
---|
| 8 | to correct the rendering problems specific to MSIE. |
---|
| 9 | - custom.css is loaded if it exists. |
---|
| 10 | --> |
---|
| 11 | |
---|
| 12 | <metal:block define-macro="header" tal:define="charset string:ISO-8859-15"> |
---|
| 13 | <tal:block define="dummy python:request.RESPONSE.setHeader('Content-Type', |
---|
| 14 | 'text/html;; charset=%s' % charset)"/> |
---|
| 15 | <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-15"/> |
---|
| 16 | <meta name="generator" content="West African eUniversity Project www.waeup.org"/> |
---|
[5136] | 17 | <title tal:content="here/portal_properties/title">WAeUP Default</title> |
---|
[1737] | 18 | <metal:block define-slot="base"></metal:block> |
---|
| 19 | <link rel="stylesheet" type="text/css" media="all" |
---|
[2628] | 20 | tal:attributes="href string:${static_base_url}default.css" /> |
---|
[1737] | 21 | <link tal:condition="btool|nothing" rel="stylesheet" type="text/css" |
---|
| 22 | media="all" tal:attributes="href string:${base_url}boxes.css" /> |
---|
| 23 | <tal:block replace="structure string:<!--[if IE]>" /><link |
---|
| 24 | rel="stylesheet" type="text/css" |
---|
[2628] | 25 | tal:attributes="href string:${static_base_url}msie.css" /><tal:block |
---|
[1737] | 26 | replace="structure string:<![endif]-->" /> |
---|
| 27 | <link rel="stylesheet" type="text/css" media="print" |
---|
[2628] | 28 | tal:attributes="href string:${static_base_url}default_print.css"/> |
---|
[1737] | 29 | <meta http-equiv="imagetoolbar" content="no" /> |
---|
| 30 | <metal:block define-slot="head_slot"></metal:block> |
---|
| 31 | <metal:block define-slot="style_slot"></metal:block> |
---|
| 32 | <link rel="stylesheet" type="text/css" media="all" |
---|
| 33 | tal:condition="exists: here/custom.css" |
---|
[2628] | 34 | tal:attributes="href string:${static_base_url}custom.css;"/> |
---|
[1737] | 35 | <link rel="stylesheet" type="text/css" media="all" |
---|
| 36 | tal:define="custom_css here/getCPSCustomCSS|nothing" |
---|
| 37 | tal:condition="custom_css" |
---|
[2628] | 38 | tal:attributes="href string:${static_base_url}${custom_css}"/> |
---|
[1737] | 39 | <metal:block define-slot="javascript_head_slot"></metal:block> |
---|
| 40 | <script type="text/javascript" |
---|
[2628] | 41 | tal:attributes="src string:${static_base_url}functions.js"></script> |
---|
[1737] | 42 | </metal:block> |
---|