|
|
<!DOCTYPE html>
|
|
|
<html>
|
|
|
<head>
|
|
|
<meta charset="utf-8">
|
|
|
<title>{{title}}</title>
|
|
|
<meta name="keywords" content="{{keywords}}">
|
|
|
<meta name="description" content="{{description}}">
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
|
|
|
<meta http-equiv="cleartype" content="on">
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
|
|
<meta content="telephone=no" name="format-detection" />
|
|
|
<meta content="email=no" name="format-detection" />
|
|
|
<link rel="dns-prefetch" href="//cdn.yoho.cn">
|
|
|
<link rel="dns-prefetch" href="//static.yohobuy.com">
|
|
|
<link rel="dns-prefetch" href="//img12.static.yhbimg.com">
|
|
|
<link rel="dns-prefetch" href="//img13.static.yhbimg.com">
|
|
|
<script type="text/javascript">
|
|
|
(function(doc, win) {
|
|
|
var docEl = doc.documentElement;
|
|
|
(function() {
|
|
|
var clientWidth = docEl.clientWidth;
|
|
|
if (!clientWidth) {
|
|
|
return;
|
|
|
}
|
|
|
docEl.style.fontSize = 20 * (clientWidth / 320) + 'px';
|
|
|
}());
|
|
|
})(document, window);
|
|
|
</script>
|
|
|
{{#if devEnv}}
|
|
|
<link rel="stylesheet" href="//localhost:5000/css/index.css">
|
|
|
{{^}}
|
|
|
<link rel="stylesheet" href="//cdn.yoho.cn/m-yohobuy-node/{{version}}/index.css">
|
|
|
{{/if}}
|
|
|
<link rel="apple-touch-icon-precomposed" href="http://static.yohobuy.com/m/v1/img/touch/apple-touch-icon-144x144-precomposed-new.png">
|
|
|
<link rel="apple-touch-startup-image" sizes="640x920" href="http://static.yohobuy.com/m/v1/img/startup/startup-retina.png" media="screen and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2)">
|
|
|
<link rel="apple-touch-startup-image" sizes="320x460" href="http://static.yohobuy.com/m/v1/img/startup/startup.png" media="screen and (max-device-width: 320)">
|
|
|
</head>
|
|
|
<body {{#if isPassportPage}}class=passport-body{{/if}}>
|
|
|
{{#if systemUpdate}}
|
|
|
{{> updata}}
|
|
|
{{/if}}
|
|
|
|
|
|
{{> header}}
|
|
|
{{{body}}}
|
|
|
{{> footer}}
|
|
|
|
|
|
{{#if devEnv}}
|
|
|
<script src="//localhost:8000/{{module}}.{{page}}.js"></script>
|
|
|
{{^}}
|
|
|
<script src="//cdn.yoho.cn/m-yohobuy-node/{{version}}/{{module}}.{{page}}.js"></script>
|
|
|
{{/if}}
|
|
|
</body>
|
|
|
</html> |
...
|
...
|
|