Piotr M
Piotr M

Reputation: 509

Import template to Magnolia CMS

I'm currently working with magnolia cms 5 and I know how to import xml templates. Now I need to import html5 page template, just I did not find how in documentation, and I do not belive it is impossible.

Upvotes: 0

Views: 597

Answers (1)

Jan
Jan

Reputation: 4369

You have multiple options to achieve what you want.

  • If you want editors to be able to edit content of the page, you need to put html in FTL file (that you can put on class path or create on the fly in STK/Templates) and replace editable parts with markup to be filled from the user input. You would also need to create template definition, make template available to editors and create dialog. See Creating Magnolia Page Template for more details

  • If this html is static and not editable by users, you can still put it in FTL or you can place it in /docroot/ folder to make it available under http://your-magnolia/docroot/your-webpage.html url.

  • If you have magnolia module already, you can also place that html in mgnl-resources folder in your module and have it accessible via http://your-magnolia/.resources/your-webpage.html

  • You can also go to STK/Resources and upload your page there and have it accessible under http://your-magnolia/resources/your-webpage.html

HTH, Jan

Upvotes: 1

Related Questions