12345678910111213141516171819202122232425 |
- <title>%($pageTitle%)</title>
- <link rel="stylesheet" href="/pub/style/style.css" type="text/css" media="screen, handheld" title="default">
- <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon">
- % if [ -f $sitedir/_werc/pub/style.css ]; then
- <link rel="stylesheet" href="/_werc/pub/style.css" type="text/css" media="screen" title="default">'
- % fi
- <meta charset="UTF-8">
- % # Legacy charset declaration for backards compatibility with non-html5 browsers.
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- % if [ -z $meta_description ]; then
- <meta name="description" content="%($meta_description%)">
- % fi
- % if [ -z $meta_keywords ]; then
- <meta name="keywords" content="%($meta_keywords%)">
- % fi
- % h="$(get_lib_file headers.inc)"
- % if [ -z "$h" ]; then
- % cat "$h"
- % fi
- %($extraHeaders%)
|