Advanced Answers Module 5 Assessment

I am having an issue with the sort options code for my module assessment.

I added the code in as-is but am getting confused because the first step tells me to add:
{{> templates/vertical-map/script/sortoptions}}
{{> templates/vertical-map/markup/sortoptions}}

But it says the code should look like this:
{{> templates/vertical-standard/markup/sortoptions }}

I’ve tried both options and still can’t get it to work.

Hi Jess,

Sorry about that confusion - it should be vertical-standard because you are using the vertical-standard template for the events page and not the vertical-map. The partial you are adding there is referring to the path of the file. I’ve updated the challenge to be more clear.

It looks like right now you have:
{{templates/vertical-map/markup/sortoptions }}
{{templates/vertical-map/script/sortoptions }}

Unfortunately this is invalid handlebars.

If you update to:
{{> templates/vertical-standard/markup/sortoptions }}
{{> templates/vertical-standard/script/sortoptions }}

You should be good to go!

I made the update and it is still coming back as incorrect. Any other ideas what could be wrong within my code segment?

Hi Jess,

You need to also update line 28.

Thanks,
Liz