Skip to content
Snippets Groups Projects
Footer.vue 1.27 KiB
Newer Older
  • Learn to ignore specific revisions
  •     <footer class="tw-p-2 tw-bg-gray-800">
            <b-container>
                <b-row>
                    <b-col>
    
                        aura/<b>dashboard</b> v{{ version }}
    
    Richard Blechinger's avatar
    Richard Blechinger committed
                        <span
    
                            v-for="mod in modules.footer"
                            :key="mod.slug"
    
                            | <router-link :to="mod.slug">
                                {{ mod.title }}
                            </router-link>
    
                        |
                        <router-link to="/credits">
                            Credits
    
                        </router-link>
                    </b-col>
                    <b-col align="right">
                        {{ $t('footer.tagline') }}
                    </b-col>
                </b-row>
            </b-container>
        </footer>
    
    Richard Blechinger's avatar
    Richard Blechinger committed
            props: {
                modules: {
                    type: Object,
                    required: true,
                }
            },
    
                    return import.meta.env.VUE_APP_VERSION
    
        footer {
            border-top: 1px solid #2e3436;
            color: rgba(255, 255, 255, 0.5);
            width: 100%;
            margin-top: auto;
        }