Home page content repeats itself

Hi folks,

I have an issue come up that’s got me scratching my head. I have my home page set up, but I noticed that when I scroll down to the bottom, the page repeats the content.

How do I remove that duplicated content?

You can see the problem here

The github repo is here

As per your homepage template the content is duplicated because you invoke both .Content in line 9 as well as its .Summary along with its .Title etc in lines 11-20.

Use the first one or the others to avoid duplication.

If you prefer to only use .Content, then make sure to move it within the li HTML tags because at the moment your page’s HTML is invalid.

An ul tag can only contain li tags -within li you can have anything you need-.

Thank you @alexandros for helping. It works!

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.