admin-contribute.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template lang='pug'>
  2. v-card(flat)
  3. v-card(color='grey lighten-5')
  4. .pa-3.pt-4
  5. .headline.primary--text Contribute
  6. .subheading.grey--text Help support Wiki.js development and operations
  7. v-card.pa-3
  8. .body-1.pl-3 Wiki.js is a #[strong free and open-source software] brought to you with #[v-icon(color='red') favorite] by #[a(href='https://requarks.io', target='_blank') requarks.io] and #[a(href='https://github.com/Requarks/wiki/graphs/contributors', target='_blank') contributors].
  9. .body-1.pt-3.pl-3 We need your help to keep improving the software and run the various associated services (e.g. hosting and networking).
  10. v-divider
  11. v-subheader Fund our work
  12. .body-1.pl-3 Wiki.js is part of the Open Collective initiative. You can contribute financially by making a monthly or one-time donation:
  13. v-card-actions.mt-3.ml-2
  14. v-btn(depressed, color='primary', href='https://opencollective.com/wikijs')
  15. v-icon(left) local_atm
  16. | Make a donation
  17. v-divider
  18. v-subheader Contribute
  19. .body-1.pl-3
  20. ul
  21. li Submit an idea or vote on a proposed one on the #[a(href='https://requests.requarks.io/wiki', target='_blank') feature requests board].
  22. li Found a bug? Submit an issue on #[a(href='https://github.com/Requarks/wiki/issues', target='_blank') Github].
  23. li Help translate Wiki.js in your language. Let us know on #[a(href='https://gitter.im/Requarks/wiki', target='_blank') Gitter].
  24. v-divider
  25. v-subheader Spread the word
  26. .body-1.pl-3
  27. ul
  28. li Talk to your friends and colleagues about how awesome Wiki.js is!
  29. li Follow us on #[a(href='https://twitter.com/requarks', target='_blank') Twitter].
  30. </template>
  31. <script>
  32. import IconGithubCircle from 'mdi/github-circle'
  33. export default {
  34. components: {
  35. IconGithubCircle
  36. },
  37. data() {
  38. return {
  39. tab: '0',
  40. telemetry: true
  41. }
  42. },
  43. methods: {
  44. resetClientID() {
  45. }
  46. }
  47. }
  48. </script>
  49. <style lang='scss' scoped>
  50. ul {
  51. margin-left: 1rem;
  52. list-style-type: square;
  53. }
  54. </style>