我试图在this视频后从头开始创建新模板。
就我而言,它不起作用。
<?xml version="1.0" encoding="UTF-8" ?>
<html xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<title>
abc title
</title>
<b:skin><![CDATA[
h1{
color:red;
}
]]></b:skin>
</head>
<body>
<b:section id='sc01'>
<h1>lorem ipsum</h1>
</b:section>
</body>
</html>
加载页面上没有lorem ipsum
页面为空,控制台清晰
在页面源代码中,我看到:
<div class='no-items section' id='sc01'></div>
任何帮助?
答案 0 :(得分:0)
在<h1>lorem ipsum</h1>
之前替换<b:section id='sc01'>
。