kapt-labs / django-check-seo

Django Check SEO will check the SEO aspects of your site for you, and will provide advice in case of problems. Compatible with Django & Django-CMS!
GNU General Public License v3.0
154 stars 13 forks source link

Footer is present in content #6

Closed corentinbettiol closed 4 years ago

corentinbettiol commented 4 years ago

When we have a page like this:

...
<footer>
  <div class="container">
    Footer
  </div>
</footer>

The self.content var in Site Class only retrieved the <div class="container">...</div> block, and so it is impossible to tell if this item in self.content:

...
<div class="container">
  Footer
</div>

is a footer that need to be removed.