Search code examples
javascripthtmlblogger

can't produce any content on minimal blogger template


I'm trying to create new template from scratch, following this video.

In my case it doesn't work.

<?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>

There is no lorem ipsum on loading page.
The page is empty, console is clear.
In page source code I see:

<div class='no-items section' id='sc01'></div>

Any help?


Solution

  • Replace <h1>lorem ipsum</h1> before <b:section id='sc01'>.