footer.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <footer id="footer">
  2. <div class="container container__footer">
  3. {{ if isset .Site.Params "about_us" }}
  4. <div class="col-md-4 col-sm-6">
  5. <h4>{{ i18n "aboutUs" }}</h4>
  6. {{ .Site.Params.about_us | safeHTML }}
  7. <div class="followus">
  8. <span class="followus__txt">關注我們</span>
  9. <a href="https://www.youtube.com/channel/UCi3jHOCCmx0Zyl2ZvoHzHQg" class="followus__img"><img src="img/youtube.png" alt=""></a>
  10. <a href="">訂閱電子報<i class="fas fa-envelope"></i></a>
  11. </div>
  12. <hr class="hidden-md hidden-lg hidden-sm">
  13. </div>
  14. <!-- /.col-md-4 -->
  15. {{ end }}
  16. <div class="col-md-4 col-sm-6">
  17. </div>
  18. <!-- /.col-md-4 -->
  19. {{ if isset .Site.Params "address" }}
  20. <div class="col-md-4 col-sm-6">
  21. <h4>{{ i18n "contactTitle" }}</h4>
  22. <!-- <a href="/contact" class="btn btn-small btn-template-main">{{ i18n "contactGoTo" }}</a> -->
  23. <hr class="hidden-md hidden-lg hidden-sm">
  24. </div>
  25. <!-- /.col-md-4 -->
  26. {{ end }}
  27. </div>
  28. <!-- /.container -->
  29. </footer>
  30. <!-- /#footer -->
  31. <!-- *** FOOTER END *** -->
  32. <!-- *** COPYRIGHT ***
  33. _________________________________________________________ -->
  34. <div id="copyright">
  35. <div class="container">
  36. <div class="col-md-12">
  37. {{ if isset .Site.Params "copyright" }}
  38. <p class="pull-left">{{ .Site.Params.copyright | safeHTML }}</p>
  39. {{ end }}
  40. <p class="pull-right">
  41. {{ i18n "templateBy" | markdownify }} <a href="https://bootstrapious.com/p/universal-business-e-commerce-template">Bootstrapious</a>.
  42. <!-- Not removing this link is part of the licence conditions of the template. Thanks for understanding :) -->
  43. {{ i18n "portedBy" | markdownify }} <a href="https://github.com/devcows/hugo-universal-theme">DevCows</a>.
  44. </p>
  45. </div>
  46. </div>
  47. </div>
  48. <!-- /#copyright -->
  49. <!-- *** COPYRIGHT END *** -->