mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.6 KiB
52 lines
1.6 KiB
7 years ago
|
<template lang='pug'>
|
||
|
v-container(fluid, fill-height, grid-list-lg)
|
||
|
v-layout(row wrap)
|
||
|
v-flex(xs12)
|
||
7 years ago
|
.headline.primary--text General
|
||
7 years ago
|
.subheading.grey--text Main settings of your wiki
|
||
|
v-form.pt-3
|
||
|
v-layout(row wrap)
|
||
|
v-flex(lg6 xs12)
|
||
7 years ago
|
v-form
|
||
|
v-card
|
||
|
v-toolbar(color='primary', dark, dense, flat)
|
||
|
v-toolbar-title
|
||
|
.subheading Site Info
|
||
|
v-subheader General
|
||
|
.px-3
|
||
|
v-text-field(label='Site Title', required, :counter='50', v-model='siteTitle', prepend-icon='public')
|
||
|
v-divider
|
||
|
v-subheader SEO
|
||
|
.px-3
|
||
|
v-text-field(label='Site Description', :counter='255', prepend-icon='public')
|
||
|
v-text-field(label='Site Keywords', :counter='255', prepend-icon='public')
|
||
|
v-select(label='Meta Robots', chips, tags, :items='metaRobots', v-model='metaRobotsSelection', prepend-icon='public')
|
||
|
v-divider
|
||
|
.px-3.pb-3
|
||
|
v-btn(color='primary') Save
|
||
7 years ago
|
v-flex(lg6 xs12)
|
||
|
v-card
|
||
7 years ago
|
v-toolbar(color='primary', dark, dense, flat)
|
||
7 years ago
|
v-toolbar-title
|
||
7 years ago
|
.subheading Site Branding
|
||
|
v-card-text ---
|
||
7 years ago
|
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
7 years ago
|
|
||
7 years ago
|
export default {
|
||
|
data() {
|
||
7 years ago
|
return {
|
||
|
siteTitle: 'Wiki.js',
|
||
|
metaRobotsSelection: ['Index', 'Follow'],
|
||
|
metaRobots: ['Index', 'Follow', 'No Index', 'No Follow']
|
||
|
}
|
||
7 years ago
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang='scss'>
|
||
|
|
||
|
</style>
|