Help me editing Blogger Xml Schema Mark Up

lendir

Registered Member
Joined
Oct 11, 2012
Messages
83
Reaction score
10
Hello

I'm trying to mark the section of my blog using schema org, I found a tutorial in this url https://basic-blogger-template.readthedocs.io/en/latest/addingschemamarkup.html

basically what I what to add /mark is the header, page type, navigation, footer, sidebar section


Code:
<body class='index' itemscope='itemscope' itemtype='http://schema.org/WebPage'>
<header id='header-wrapper' itemscope='itemscope' itemtype='http://schema.org/WPHeader'>
<nav id='navigation' itemscope='itemscope' itemtype='http://schema.org/SiteNavigationElement' role='navigation'>
<article id='article-wrapper' itemscope='itemscope' itemtype='http://schema.org/Blog' role='main'>
<aside id='sidebar-wrapper' itemscope='itemscope' itemtype='http://schema.org/WPSideBar'>
<footer id='footer-wrapper' itemscope='itemscope' itemtype='http://schema.org/WPFooter'>

But my template seems different with the example tutorial ,theres isnt any
Code:
header-wrapper,article-wrapper,sidebar-wrapper
in my xml template ...my xml looks like this

Code:
 </head>
<!-- <body><div></div> -->
  <body expr:class='&quot;loading&quot; + data:blog.mobileClass'>
<div>


<div id='wrapper'>

    <div id='header'>
   <b:section id='header2' maxwidgets='1' showaddelement='no'>
     <b:widget id='Header1' locked='true' title='test (Header)' type='Header' version='1'>...</b:widget>
      </b:section>
  </div>

  <nav id='navi-templatoid'>
  <input type='checkbox'/>
  <label><i class='fa fa-bars'/></label>
  <ul>
  <li><a expr:href='data:blog.homepageUrl'>Home</a></li>
  <li><a href='#'>Technology</a></li>
  <li><a href='#'>Bussiness</a></li>
  <li><a href='#'>Lifestyle</a></li>
  <li><a href='#'>Dropdown</a>
    <ul>
      <li><a href='#'>Politics</a></li>
      <li><a href='#'>Healthy</a></li>
     <li><a href='#'>Video</a></li>
      <li><a href='#'>Football</a></li>
    </ul>
  </li>
  </ul>
  </nav>

  <div id='content-wrapper'>
    <div id='main-wrapper'>
      <b:section class='main' id='main' showaddelement='no'>
        <b:widget id='Blog1' locked='true' title='Posting Blog' type='Blog' version='1'>

Anyone Can help me?
 
Back
Top