Layout.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <ParentLayout>
  3. <template #sidebar-top>
  4. <CarbonAds/>
  5. </template>
  6. <template #sidebar-bottom>
  7. <footer class="footer">
  8. A product by:
  9. <a href="https://www.jbaysolutions.com/" target="_blank" rel="noopener" class="footer-card">
  10. <img :src="$withBase('/assets/img/logo-jbay.png')" alt="JBay Solutions"/>
  11. </a>
  12. </footer>
  13. </template>
  14. </ParentLayout>
  15. </template>
  16. <script>
  17. import ParentLayout from '@parent-theme/layouts/Layout.vue'
  18. import CarbonAds from '../components/CarbonAds'
  19. export default {
  20. name: 'Layout',
  21. components: {
  22. ParentLayout,
  23. CarbonAds,
  24. }
  25. }
  26. </script>
  27. <style scoped>
  28. .footer {
  29. box-sizing: border-box;
  30. padding: 1em 1em 1em 2em;
  31. margin-top: auto;
  32. width: 100%;
  33. font-size: .8em;
  34. color: #647d96;
  35. }
  36. .footer-card {
  37. display: block;
  38. max-width: 120px;
  39. width: 90%;
  40. margin-bottom: 1em;
  41. margin-top: 1em;
  42. }
  43. </style>