| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 | <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>                <a href="https://www.youtube.com/channel/UCi3jHOCCmx0Zyl2ZvoHzHQg" class="followus__img"><img src="img/youtube.png" alt=""></a>                <a href="https://line.me/R/ti/p/@choozmo?from=page" class="followus__img"><img src="img/line.png" alt=""></a>                <a href="">訂閱電子報<i class="fas fa-envelope"></i></a>            </div>            <hr class="hidden-md hidden-lg hidden-sm">        </div>        <!-- /.col-md-4 -->        {{ end }}        <div class="col-md-4 col-sm-6">            <div>                <p class="footer__btn__text">想洽詢我們的專案製作嗎?</p>                <a href="/contact/service/" class="btn btn-lg">洽詢專案製作</a>            </div>            {{ if isset .Site.Params "recent_posts" }} {{ if .Site.Params.recent_posts.enable }}            <h4>{{ i18n "recentPosts" }}</h4>            <div class="blog-entries">                {{ range first 3 (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) }}                <div class="item same-height-row clearfix">                    <div class="image same-height-always">                        <a href="{{ .Permalink }}">                          {{ if isset .Params "banner" }}                            <img src="{{ .Params.banner | relURL }}" class="img-responsive" alt="{{ .Title }}">                          {{ else }}                            <img src="{{ "img/placeholder.png" | relURL }}" class="img-responsive" alt="{{ .Title }}">                          {{ end }}                        </a>                    </div>                    <div class="name same-height-always">                        <h5><a href="{{ .Permalink }}">{{ .Title }}</a></h5>                    </div>                </div>                {{ end }}            </div>            <hr class="hidden-md hidden-lg">            {{ end }} {{ end }}        </div>        <!-- /.col-md-4 -->        {{ if isset .Site.Params "address" }}        <div class="col-md-4 col-sm-6">          <h4>{{ i18n "contactTitle" }}</h4>            {{ .Site.Params.address | safeHTML }}            <!-- <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 *** -->
 |