mirror of https://github.com/sipwise/www_admin.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
930 B
29 lines
930 B
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="[% site_config.language %]">
|
|
|
|
<head>
|
|
|
|
<title>[% template.title or site_config.title %]</title>
|
|
|
|
[% FOREACH css_file = site_config.css %]
|
|
<link rel="stylesheet" type="text/css" href="[% css_file %]" />
|
|
[% END %]
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<meta http-equiv="content-language" content="[% site_config.language %]" />
|
|
|
|
<meta name="description" content="[% template.title or site_config.title %]" />
|
|
<meta name="title" content="[% template.title or site_config.title %]" />
|
|
<meta name="Company" content="[% site_config.company.name %]" />
|
|
<meta name="keywords" content="" />
|
|
<meta name="Language" content="[% site_config.language_string %]" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
[% content %]
|
|
</body>
|
|
|
|
</html>
|