CMS Development

albertsg
Guía

Load/Import HTML file into Template

resolver

Hi guys.

 

I have a question regarding Templates and HubL.

If I'm not using a drag and drop template, is there a way to load an HTML file into the template?

 

Imagine that I need to load a piece of code or another depending on a parameter in the URL. For example:

 

if url contains '/es/' then

    load_html_1

else

    load_html_2

endif

 

Is it possible? If yes, how can I do it with HubL? I cannot find anything in the documentation.

 

And no, I don't want to use custom modules. I'm talking about calling a template from another template. 

 

Thank you!



Did my answer help you? Mark it as a solution


Book time with me

You can also connect with me on LinkedIn



1 Soluciones aceptada
albertsg
Solución
Guía

Load/Import HTML file into Template

resolver

Solved, using partial templates and include them. Easy solution but the documentation is so bad structured that is hard to find what we need. If someone is interested, to include a partial template just do the following:

{% include "Your/URL/to/the_template.html" %}



Did my answer help you? Mark it as a solution


Book time with me

You can also connect with me on LinkedIn



Ver la solución en mensaje original publicado

3 Respuestas 3
albertsg
Solución
Guía

Load/Import HTML file into Template

resolver

Solved, using partial templates and include them. Easy solution but the documentation is so bad structured that is hard to find what we need. If someone is interested, to include a partial template just do the following:

{% include "Your/URL/to/the_template.html" %}



Did my answer help you? Mark it as a solution


Book time with me

You can also connect with me on LinkedIn



Kmakri
Miembro

Load/Import HTML file into Template

resolver

Hi, can you provide the steps for uploading an html code into an existing template please?

Thank you in advance.

0 Me gusta
albertsg
Guía

Load/Import HTML file into Template

resolver

Sorry for the late reply, didn't see your question.

 

I already provided the solution, just create a partial template with your code and add it to the main template using the following:

{% include "Your/URL/to/the_template.html" %}



Did my answer help you? Mark it as a solution


Book time with me

You can also connect with me on LinkedIn



0 Me gusta