* Contact page from Admin or Environment Variable * Get contact page from admin by pusher * Changes requested * Modify contactPageStore management * documentation environment variables Co-authored-by: Gregoire Parant <g.parant@thecodingmachine.com>
14 lines
No EOL
369 B
Svelte
14 lines
No EOL
369 B
Svelte
<script lang="ts">
|
|
import {contactPageStore} from "../../Stores/MenuStore";
|
|
</script>
|
|
|
|
<iframe title="contact" src="{$contactPageStore}" allow="clipboard-read; clipboard-write self {$contactPageStore}" allowfullscreen></iframe>
|
|
|
|
<style lang="scss">
|
|
iframe {
|
|
border: none;
|
|
height: calc(100% - 56px);
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
</style> |