Django Cms - How to add customise menu in djangocms

Hi Im new to cms I was implementing djangocms in my project I have already have my html files im added placholders in that for making that content editable for example:

    {% block content %}
    {% placeholder "content" %}
    {% endblock content %}

I have added placeholder for all the places i needed when i come to menu i used placeholder it only changes in the current html page i need to change in all the page which have same header and footer

I Have tried

    {% show_menu 0 100 100 100 %}

But it comes default cms menus i need menu with my template style.

I have also tried

    {% include "header.html" %}

But the placeholder only coming the plugin i need to add link again and again in every page.

Is there any solution for while im adding plugin in header.html it will display on all the pages which have the same header ?

Back to Top