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.

43 lines
1.4 KiB

  1. <template lang='pug'>
  2. v-container(fluid, fill-height, grid-list-lg)
  3. v-layout(row wrap)
  4. v-flex(xs12)
  5. .headline.primary--text General
  6. .subheading.grey--text Main settings of your wiki
  7. v-form.pt-3
  8. v-layout(row wrap)
  9. v-flex(lg6 xs12)
  10. v-card
  11. v-toolbar(color='blue', dark, dense, flat)
  12. v-toolbar-title
  13. .subheading Site Info
  14. v-btn(fab, absolute, right, bottom, small, light): v-icon save
  15. v-card-text
  16. v-text-field(label='Site Title', required, :counter='50', v-model='siteTitle')
  17. v-text-field(label='Site Description', :counter='255')
  18. v-text-field(label='Site Keywords', :counter='255')
  19. v-select(label='Meta Robots', chips, tags, :items='metaRobots', v-model='metaRobotsSelection')
  20. v-flex(lg6 xs12)
  21. v-card
  22. v-toolbar(color='blue', dark, dense, flat)
  23. v-toolbar-title
  24. .subheading Site Branding
  25. v-card-text ---
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. siteTitle: 'Wiki.js',
  32. metaRobotsSelection: ['Index', 'Follow'],
  33. metaRobots: ['Index', 'Follow', 'No Index', 'No Follow']
  34. }
  35. }
  36. }
  37. </script>
  38. <style lang='scss'>
  39. </style>