2
0

admin-contribute.vue 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <template lang='pug'>
  2. v-card(flat)
  3. v-card(flat, tile, :color='$vuetify.dark ? "grey darken-4" : "grey lighten-5"').pa-3.pt-4
  4. .headline.primary--text Contribute
  5. .subheading.grey--text Help support Wiki.js development and operations
  6. v-card.pa-3
  7. .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].
  8. .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).
  9. v-divider
  10. v-subheader Fund our work
  11. .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:
  12. v-card-actions.mt-3.ml-2
  13. v-btn(depressed, color='primary', href='https://opencollective.com/wikijs')
  14. v-icon(left) local_atm
  15. | Make a donation
  16. v-divider
  17. v-subheader Contribute
  18. .body-1.pl-3
  19. ul
  20. li Submit an idea or vote on a proposed one on the #[a(href='https://requests.requarks.io/wiki', target='_blank') feature requests board].
  21. li Found a bug? Submit an issue on #[a(href='https://github.com/Requarks/wiki/issues', target='_blank') Github].
  22. li Help translate Wiki.js in your language. Let us know on #[a(href='https://gitter.im/Requarks/wiki', target='_blank') Gitter].
  23. v-divider
  24. v-subheader Spread the word
  25. .body-1.pl-3
  26. ul
  27. li Talk to your friends and colleagues about how awesome Wiki.js is!
  28. li Follow us on #[a(href='https://twitter.com/requarks', target='_blank') Twitter].
  29. </template>
  30. <script>
  31. import IconGithubCircle from 'mdi/github-circle'
  32. export default {
  33. components: {
  34. IconGithubCircle
  35. },
  36. data() {
  37. return {
  38. tab: '0',
  39. telemetry: true
  40. }
  41. },
  42. methods: {
  43. resetClientID() {
  44. }
  45. }
  46. }
  47. </script>
  48. <style lang='scss' scoped>
  49. ul {
  50. margin-left: 1rem;
  51. list-style-type: square;
  52. }
  53. </style>