mirror of
				https://gitee.com/vant-contrib/vant.git
				synced 2025-11-04 04:42:09 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en">
 | 
						|
  <head>
 | 
						|
    <meta charset="UTF-8" />
 | 
						|
    <title><%- title %></title>
 | 
						|
    <% if (description) { %>
 | 
						|
    <meta name="description" content="<%- description %>" />
 | 
						|
    <% } %>
 | 
						|
    <link rel="icon" type="image/png" href="<%- logo %>" />
 | 
						|
    <meta
 | 
						|
      name="viewport"
 | 
						|
      content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover"
 | 
						|
    />
 | 
						|
    <%= meta %>
 | 
						|
    <meta http-equiv="Cache-Control" content="no-cache" />
 | 
						|
    <meta http-equiv="Pragma" content="no-cache" />
 | 
						|
    <meta http-equiv="Expires" content="0" />
 | 
						|
    <% if (headHtml) { %>
 | 
						|
      <%= headHtml %>
 | 
						|
    <% } %>
 | 
						|
    <% if (enableVConsole) { %>
 | 
						|
    <script src="https://unpkg.com/vconsole/dist/vconsole.min.js"></script>
 | 
						|
    <script>
 | 
						|
      var vConsole = new window.VConsole();
 | 
						|
    </script>
 | 
						|
    <% } %>
 | 
						|
    <% if (baiduAnalytics) { %>
 | 
						|
    <script>
 | 
						|
      // avoid to load analytics in iframe
 | 
						|
      if (window.top === window) {
 | 
						|
        var _hmt = _hmt || [];
 | 
						|
        (function () {
 | 
						|
          var hm = document.createElement('script');
 | 
						|
          hm.src = 'https://hm.baidu.com/hm.js?<%- baiduAnalytics.seed %>';
 | 
						|
          var s = document.getElementsByTagName('script')[0];
 | 
						|
          s.parentNode.insertBefore(hm, s);
 | 
						|
        })();
 | 
						|
      }
 | 
						|
    </script>
 | 
						|
    <% } %>
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <div id="app"></div>
 | 
						|
    <script type="module" src="/mobile/main.js"></script>
 | 
						|
  </body>
 | 
						|
</html>
 |