2018-02-03 18:57:45 +00:00
|
|
|
<Nav :page />
|
2018-01-06 23:51:25 +00:00
|
|
|
|
2018-02-13 06:06:05 +00:00
|
|
|
<div class="container">
|
|
|
|
<main>
|
|
|
|
<slot></slot>
|
|
|
|
</main>
|
2018-03-07 17:25:07 +00:00
|
|
|
{{#if !$isUserLoggedIn && page === 'home'}}
|
2018-03-13 05:16:52 +00:00
|
|
|
<InformationalFooter />
|
2018-03-07 17:25:07 +00:00
|
|
|
{{/if}}
|
2018-02-13 06:06:05 +00:00
|
|
|
</div>
|
2018-01-06 23:51:25 +00:00
|
|
|
<script>
|
|
|
|
import Nav from './Nav.html';
|
2018-01-28 21:09:39 +00:00
|
|
|
import { store } from '../_store/store'
|
2018-03-13 05:16:52 +00:00
|
|
|
import InformationalFooter from './InformationalFooter.html'
|
2018-01-06 23:51:25 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
2018-03-07 17:25:07 +00:00
|
|
|
Nav,
|
2018-03-13 05:16:52 +00:00
|
|
|
InformationalFooter
|
2018-01-27 18:46:52 +00:00
|
|
|
},
|
|
|
|
store: () => store
|
2018-01-23 05:30:14 +00:00
|
|
|
}
|
2018-01-06 23:51:25 +00:00
|
|
|
</script>
|