footer.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. </div>
  10. <hr class="hidden-md hidden-lg hidden-sm">
  11. </div>
  12. <!-- /.col-md-4 -->
  13. {{ end }}
  14. <div class="col-md-4 col-sm-6">
  15. </div>
  16. <!-- /.col-md-4 -->
  17. {{ if isset .Site.Params "address" }}
  18. <div class="col-md-4 col-sm-6">
  19. <h4>{{ i18n "contactTitle" }}</h4>
  20. <!-- <a href="/contact" class="btn btn-small btn-template-main">{{ i18n "contactGoTo" }}</a> -->
  21. <hr class="hidden-md hidden-lg hidden-sm">
  22. </div>
  23. <!-- /.col-md-4 -->
  24. {{ end }}
  25. </div>
  26. <!-- /.container -->
  27. </footer>
  28. <!-- /#footer -->
  29. <!-- *** FOOTER END *** -->
  30. <!-- *** COPYRIGHT ***
  31. _________________________________________________________ -->
  32. <div id="copyright">
  33. <div class="container">
  34. <div class="col-md-12">
  35. {{ if isset .Site.Params "copyright" }}
  36. <p class="pull-left">{{ .Site.Params.copyright | safeHTML }}</p>
  37. {{ end }}
  38. <p class="pull-right">
  39. {{ i18n "templateBy" | markdownify }} <a href="https://bootstrapious.com/p/universal-business-e-commerce-template">Bootstrapious</a>.
  40. <!-- Not removing this link is part of the licence conditions of the template. Thanks for understanding :) -->
  41. {{ i18n "portedBy" | markdownify }} <a href="https://github.com/devcows/hugo-universal-theme">DevCows</a>.
  42. </p>
  43. </div>
  44. </div>
  45. </div>
  46. <!-- /#copyright -->
  47. <!-- *** COPYRIGHT END *** -->