[ads] fixes

This commit is contained in:
Andrea Vos 2022-09-02 23:12:54 +02:00
parent 00b6b3452d
commit 9a447bd21b
3 changed files with 17 additions and 22 deletions

View File

@ -1,5 +1,5 @@
<template> <template>
<Page> <component :is="basic ? 'div' : 'Page'">
<div v-if="year" :class="basic ? 'py-5' : ''"> <div v-if="year" :class="basic ? 'py-5' : ''">
<CommunityNav v-if="!basic"/> <CommunityNav v-if="!basic"/>
@ -72,7 +72,7 @@
</template> </template>
</div> </div>
<NotFound v-else/> <NotFound v-else/>
</Page> </component>
</template> </template>
<script> <script>

View File

@ -1,5 +1,4 @@
<template> <template>
<Page>
<Profile v-if="profile" :user="user" :profile="profile" class="pb-3 mt-5" expandLinks> <Profile v-if="profile" :user="user" :profile="profile" class="pb-3 mt-5" expandLinks>
<nuxt-link to="/"> <nuxt-link to="/">
<h1 class="text-nowrap h5"> <h1 class="text-nowrap h5">
@ -9,7 +8,6 @@
</nuxt-link> </nuxt-link>
</Profile> </Profile>
<NotFound v-else/> <NotFound v-else/>
</Page>
</template> </template>
<script> <script>

View File

@ -1,24 +1,21 @@
export default { export default {
'support': 100, 'support': 101,
'aside-left-top': 110, 'aside-left-top': 102,
'aside-left-middle': 111, 'aside-left-middle': 103,
'aside-left-bottom': 112, 'aside-left-bottom': 104,
'aside-right-top': 120, 'aside-right-top': 105,
'aside-right-middle': 121, 'aside-right-middle': 106,
'aside-right-bottom': 122, 'aside-right-bottom': 107,
'main-0': 130, 'main-0': 108,
'main-1': 131, 'main-1': 109,
'main-2': 132, 'main-2': 110,
'main-3': 133, 'main-3': 111,
'main-4': 134, 'main-4': 112,
'main-5': 135, 'main-5': 113,
'main-6': 136, 'main-6': 114,
'main-7': 137,
'main-8': 138,
'main-9': 139,
'footer': 140, 'footer': 115,
}; };