CMS Development

albertsg
ガイド役

Load/Import HTML file into Template

解決

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件の承認済みベストアンサー
albertsg
解決策
ガイド役

Load/Import HTML file into Template

解決

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



元の投稿で解決策を見る

3件の返信
albertsg
解決策
ガイド役

Load/Import HTML file into Template

解決

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
メンバー

Load/Import HTML file into Template

解決

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

Thank you in advance.

0 いいね!
albertsg
ガイド役

Load/Import HTML file into Template

解決

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 いいね!