# Page Builder Templates

**URL:** https://forum.mautic.org/t/page-builder-templates/1497
**Category:** General Discussion
**Created:** [February 4, 2015, 6:24am UTC](https://forum.mautic.org/t/page-builder-templates/1497 "2015-02-04T06:24:13Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![Scott\_Allan](https://avatars.discourse-cdn.com/v4/letter/s/958977/32.png) [@Scott\_Allan](https://forum.mautic.org/u/Scott_Allan)
#### Post date: [February 4, 2015, 6:24am UTC](https://forum.mautic.org/t/page-builder-templates/1497/1 "2015-02-04T06:24:13Z")

</div>

Hi there, I am massively impressed with the software but I have a question about the landing page builder.  
  
  
  
Unfortunately, I am not overly tech savvy, but have some ideas for the software that I would like to pass onto my programmer  
  
  
  
Is there a way to upload other templates to the page builder other than the standard couple that are already there ?  
  
  
  
If so, what format would they need to be in ?

---

<div class="post-metadata">

### Author: ![Scott\_Allan](https://avatars.discourse-cdn.com/v4/letter/s/958977/32.png) [@Scott\_Allan](https://forum.mautic.org/u/Scott_Allan)
#### Post date: [February 4, 2015, 6:24am UTC](https://forum.mautic.org/t/page-builder-templates/1497/2 "2015-02-04T06:24:14Z")

</div>

Hi there, I am massively impressed with the software but I have a question about the landing page builder.

Unfortunately, I am not overly tech savvy, but have some ideas for the software that I would like to pass onto my programmer

Is there a way to upload other templates to the page builder other than the standard couple that are already there ?

If so, what format would they need to be in ?

---

<div class="post-metadata">

### Author: ![gmillard](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.mautic.org/gmillard/32/5_2.png) [@gmillard](https://forum.mautic.org/u/gmillard)
#### Post date: [February 5, 2015, 4:59am UTC](https://forum.mautic.org/t/page-builder-templates/1497/3 "2015-02-05T04:59:27Z")

</div>

Hi Scott,

Yes! So the themes are in /themes. All you need to do is copy one of those folders, change the folder name and update the config.php file. You’ll see a page.php, form.php, message.php and email.php. Each represents a a major feature of Mautic. For example, page.php will be used for the landing page builder, email.php for the email builder, etc.

It uses a slot system (Symfony’s way of handling passing along data in templates). A slot is like a module or a place where you can insert content via the builder.

For general use of Symfony’s templating component, check out [http://symfony.com/doc/current/cookbook/templating/PHP.html](http://symfony.com/doc/current/cookbook/templating/PHP.html).

A few Mautic specific notes:

Make sure you have the following at the bottom of page.php and email.php so the builders can inject necessary code to work

```auto
<?php $view['slots']->output('builder'); ?>
```

When including assets from the theme folder (css, js, images), use the following to ensure that the asset location is properly generated for subfolders, the builders, and public views.

```auto
 $view['assets']->getUrl(/themes/mytheme/path/to/asset);
```

Let me know if you can’t figure something out based on the existing templates. I’ll be writing up more detailed documentation soon.

Thanks!  
Alan

---

<div class="post-metadata">

### Author: ![bchiam](https://avatars.discourse-cdn.com/v4/letter/b/bcef8e/32.png) [@bchiam](https://forum.mautic.org/u/bchiam)
#### Post date: [February 5, 2017, 6:05pm UTC](https://forum.mautic.org/t/page-builder-templates/1497/4 "2017-02-05T18:05:10Z")

</div>

Hi Alan,

You have done a great job with Mautic.

I successfully able to install and get it working for 2.5.1.

Now I’m configuring Autoresponder service on Mautic.

I bought a html template landing page. I’m wondering if I can actually copy and paste the html code into Mautic landing page?

Appreciate your reply.

Thank You  
Billy

---

<div class="post-metadata">

### Author: ![silavapi](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.mautic.org/silavapi/32/7424_2.png) [@silavapi](https://forum.mautic.org/u/silavapi)
#### Post date: [February 2, 2020, 11:00pm UTC](https://forum.mautic.org/t/page-builder-templates/1497/5 "2020-02-02T23:00:54Z")

</div>


