123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <footer id="footer">
- <div class="container container__footer">
- {{ if isset .Site.Params "about_us" }}
- <div class="col-md-4 col-sm-6">
- <h4>{{ i18n "aboutUs" }}</h4>
- {{ .Site.Params.about_us | safeHTML }}
- <div class="followus">
- <span class="followus__txt">關注我們</span>
- </div>
- <hr class="hidden-md hidden-lg hidden-sm">
- </div>
- <!-- /.col-md-4 -->
- {{ end }}
- <div class="col-md-4 col-sm-6">
-
- </div>
- <!-- /.col-md-4 -->
- {{ if isset .Site.Params "address" }}
- <div class="col-md-4 col-sm-6">
- <h4>{{ i18n "contactTitle" }}</h4>
- <!-- <a href="/contact" class="btn btn-small btn-template-main">{{ i18n "contactGoTo" }}</a> -->
- <hr class="hidden-md hidden-lg hidden-sm">
- </div>
- <!-- /.col-md-4 -->
- {{ end }}
- </div>
- <!-- /.container -->
- </footer>
- <!-- /#footer -->
- <!-- *** FOOTER END *** -->
- <!-- *** COPYRIGHT ***
- _________________________________________________________ -->
- <div id="copyright">
- <div class="container">
- <div class="col-md-12">
- {{ if isset .Site.Params "copyright" }}
- <p class="pull-left">{{ .Site.Params.copyright | safeHTML }}</p>
- {{ end }}
- <p class="pull-right">
- {{ i18n "templateBy" | markdownify }} <a href="https://bootstrapious.com/p/universal-business-e-commerce-template">Bootstrapious</a>.
- <!-- Not removing this link is part of the licence conditions of the template. Thanks for understanding :) -->
- {{ i18n "portedBy" | markdownify }} <a href="https://github.com/devcows/hugo-universal-theme">DevCows</a>.
- </p>
- </div>
- </div>
- </div>
- <!-- /#copyright -->
- <!-- *** COPYRIGHT END *** -->
|