src/components/template-components/footer/contact
// src/components/template-components/footer/contact/schema.yaml
$schema: http://json-schema.org/draft-07/schema
$id: /template-components/footer/contact
additionalProperties: false
type: object
required:
- content
properties:
content:
type: string
format: html
// src/components/template-components/footer/contact/mocks.yaml
content: |
<p>Gastererweg 1</p>
<p>39054 Unterinn/Ritten (BZ)</p>
<p>Italien</p>
<p>+39 0471 296611</p>
<p>finstral@finstral.com</p>
// src/components/template-components/footer/contact/contact.twig
<div class="FooterContact">
{{ content }}
</div>