I've been playing around with setting up a single page site with different modules. I've gotten everything working except for my contact form. Below is my file structure:
pages
01.home
_item1
_item2
_item3
_item4
_contact
features.md
form.md
This is what my features.md file looks like.
title: Contact
body_classes: contact
process:
markdown: true
twig: true
content:
items: '@self.modular'
form:
action: /
name: my-nice-form
fields:
name: name
label: Name
placeholder: 'Enter your name'
autofocus: 'on'
autocomplete: 'on'
type: text
default: test
buttons:
-
type: submit
value: Submit
process:
-
message: 'Thank you for your feedback!'
My form will NOT show up at all.
I'm wanting to divide my _contact module into two columns with the form on the left and actual contact information on the right.