tvid/views/base.tpl

20 lines
412 B
Smarty
Raw Normal View History

2020-03-10 19:33:57 +00:00
<!doctype html>
<html lang="en">
<head>
<title>{{ get('title','tvid') }}</title>
<meta charset="utf-8">
% if defined('refresh'):
<meta http-equiv="refresh" content="{{ get('refresh',60) }}">
% end
2020-03-11 01:52:30 +00:00
2020-03-10 19:33:57 +00:00
% include('htmlheader.tpl')
2020-03-11 01:52:30 +00:00
<link rel="stylesheet" href="/style.css" type="text/css">
2020-03-10 19:33:57 +00:00
</head>
<body>
{{!base}}
</body>
</html>