This commits change the way contacts params are handled: instead of
declaring them statically, they are declared as an array of tables in
the TOML configuration file, then they are displayed in the two sections
(homepage and footer) of the website through the {{ range }} statement.
This makes handling multiple contacts params easier and avoids the
need of changing manually this two files:
- `layouts/partials/footer.html`;
- `exampleSite/content/homepage/contact.md`;
Signed-off-by: Filippo Fontana <filippofontana1998@gmail.com>
This allows to inject raw html into any content file. For example, my client uses an appointment booking service which requires a generated html snippet to be inserted into the content page.
```
{{< rawhtml >}}
<div id="etermin">
<iframe ...>...</iframe>
<script>...</script>
</div>
{{< /rawhtml >}}
```