页眉模板 header.html

1.定义全局变量 config

config = web.storage(
    email='[email protected]',
    site_name = '任务跟踪',
    site_desc = '',
    static = '/static',
)
web.template.Template.globals['config'] = config

2. templates下编辑 header.html

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>$config.site_name</title>
<link href="/static/styles/reset.css" rel="stylesheet" type="text/css" />
<link href="/static/styles/index/style.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" src="/static/js/jquery-3.1.1.min.js" ></script>
</head>

<body>
<div class="page">
    <div class="header box">
        <h1><a href="/">$config.site_name</a></h1>
    </div>

    <div class="main box">