2018-05-02 02:05:36 +02:00
|
|
|
{#if $isUserLoggedIn}
|
2018-03-14 01:14:57 +01:00
|
|
|
<div class="search-page">
|
|
|
|
<Search></Search>
|
|
|
|
</div>
|
2018-05-02 02:05:36 +02:00
|
|
|
{:else}
|
2018-03-14 01:14:57 +01:00
|
|
|
<HiddenFromSSR>
|
|
|
|
<FreeTextLayout>
|
|
|
|
<h1>Search</h1>
|
|
|
|
|
|
|
|
<p>You can search once logged in to an instance.</p>
|
|
|
|
</FreeTextLayout>
|
|
|
|
</HiddenFromSSR>
|
2018-05-02 02:05:36 +02:00
|
|
|
{/if}
|
2018-03-14 01:14:57 +01:00
|
|
|
<style>
|
|
|
|
.search-page {
|
|
|
|
padding: 20px 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 767px) {
|
|
|
|
.search-page {
|
|
|
|
padding: 20px 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
import FreeTextLayout from '.././_components/FreeTextLayout.html'
|
|
|
|
import { store } from '.././_store/store.js'
|
|
|
|
import HiddenFromSSR from '.././_components/HiddenFromSSR'
|
|
|
|
import Search from '.././_components/search/Search.html'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
store: () => store,
|
|
|
|
components: {
|
|
|
|
Search,
|
|
|
|
FreeTextLayout,
|
|
|
|
HiddenFromSSR
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|