Skip to content
Grav 2.0 is officially stable. Read the announcement →

Community guidelines

Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.

General

Form contact in mache template

Started by Mick 8 years ago · 1 replies · 603 views
8 years ago

Hi All,
I don't get something related to the form.

I take the mache template which seems pretty good.
In the skeleton provided , there is a modular page with in it a subpage template contact.

I would like the "contact" in a simple page.

I have first try to duplicate the page from the skeleton and delete all the modular that i don't want.
I keep the contact subpage with :
"title: Contactme
cache_enable: false
onpage_menu: false
content:
items: '@self.modular'
order:
by: default
dir: asc
custom:

  • _banner
  • _contact
    form:
    action: /home
    name: contact"
    and so on
    In this case, i lost all the header included the menu.

After that i have duplicated the form.html.twig from antimaster to mache in order to create a form page with :
"title: ContactForm
cache_enable: false
onpage_menu: false
form:
name: contact-form
fields:"
and so on
I lost also my header , i still have my menu with a little display default.

Finally, how can i keep all my header ? What i don't get in ?

Thanks for your help.

8 years ago

I am not sure that is the right way but to share one solution, i have had in the form.html.twig :
"{% if theme_config.default_background_image|length > 0 %}
{% for item in theme_config.default_background_image %}
{% set image = item.name %}
{% endfor %}
{% endif %}

<div class="banner banner-alt"{% if image %} style="background-image: url({{ url('theme://images/' ~ image) }})"{% endif %}>
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1>{{ page.title }}</h1>
<span class="line"></span>
<div class="top">{{ page.header.summary }}</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row content">
{{ page.content }}
</div>
</div>"

Suggested topics

Topic Participants Replies Views Activity
General · by Jerry Hunt, 4 days ago
2 95 14 hours ago
General · by pamtbaau, 20 hours ago
1 61 19 hours ago
General · by Andy Miller, 1 day ago
0 47 1 day ago
General · by Marcel, 12 months ago
6 356 5 days ago
General · by Duc , 6 days ago
3 44 6 days ago