diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-08-17 15:02:59 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2009-08-17 15:02:59 +0200 |
commit | cbbdfab6a4370b71203a9a480a78331ee03a9019 (patch) | |
tree | 240c14d9a02549ddfd7a27edcb9c535e3f025f5a /module/web/templates/header.tpl | |
parent | reconnect-, uploaded.to fix (diff) | |
download | pyload-cbbdfab6a4370b71203a9a480a78331ee03a9019.tar.xz |
pyLoad Test Webinterface !
Diffstat (limited to 'module/web/templates/header.tpl')
-rw-r--r-- | module/web/templates/header.tpl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/module/web/templates/header.tpl b/module/web/templates/header.tpl new file mode 100644 index 000000000..27ab7e2bc --- /dev/null +++ b/module/web/templates/header.tpl @@ -0,0 +1,20 @@ +<?xml version="1.0" ?> +<!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"> +<head> + +%for item in use_js: +<script type="text/javascript" src="static/{{item}}"></script> +%end + +%for item in use_css: +<link rel="stylesheet" type="text/css" href="static/{{item}}"> +%end + +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> + +<title>{{title}}</title> + +</head> +<body> |