CMS development, Getting started with modules. The preview shown is not the correct one.

Hi everyone!
I’m following the modules course regarding CMS development and I’m stuck at point 14 pretty much, which is where I’m asked to insert the created module inside ‘home.html’ as shown below (this is my code) :

The result is this (not correct):

and if I use inspect element, it shows me this:

I hope someone can give me some help.
Thank you in advance!

Hi @NSorrenti , welcome to HubSpot development!

For modules the .module just denotes a folder as being a module and basically doesn’t exist in other contexts. As such, you do not need the .module at the end of your path and would call on your module like so:

{% dnd_module path="../modules/testimonial", width=4 %}

P.S A module/column’s offset is 0 by default, so you don’t need to add one to your first module/column in a section.

Thanks a lot @alyssamwilie ! It works!!