| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 | <!DOCTYPE html><html lang="{{ .Site.LanguageCode }}">{{ partial "head.html" . }}<body>  <!-- Google Tag Manager (noscript) -->  <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MTWWP3G" height="0" width="0"      style="display:none;visibility:hidden"></iframe></noscript>  <!-- End Google Tag Manager (noscript) -->  <div id="all">    {{ partial "navbar.html" . }}    <!-- {{ partial "nav.html" . }} -->    {{ partial "breadcrumbs.html" . }}    <div id="content">      <div class="container-fluid">        <div class="row">          <div class="col-12 col-lg-8">            <div id="blog-post">              <section class="mt-3 mt-lg-0 info">                <ul>                  {{ range (.GetTerms "tags") }}                  <li>                    <a href="{{ .Permalink }}">                      <i class="fas fa-tags"></i>                      {{ .LinkTitle }}                    </a>                  </li>                  {{ end }}                </ul>                <small class="text-muted">{{ .Date | time.Format ":date_long" }}</small>              </section>              <!-- {{ if or .Params.author .Params.date }}            <small class="text-muted text-uppercase mb-small text-right">              {{ if .Params.author }}{{ i18n "authorBy" }} <a href="#">{{ .Params.author }}</a>{{ end }}              {{ if and .Params.author .Params.date }} | {{ end }}              {{ if .Params.date }}{{ .Date.Format .Site.Params.date_format }}{{ end }}            </small>            {{ end }} -->              <div id="post-content">                {{ .Content }}              </div>              <a href="/blog/" class="back-link">< 回到列表</a>            </div>          </div>          <div class="col-12 col-lg-4 pe-lg-5">            <div id="form">              {{ partial "form-main.html" . }}            </div>          </div>          <!-- <div class="col-md-3">            {{ partial "sidebar.html" . }}          </div> -->        </div>      </div>    </div>    {{ partial "LP_components/Footer.html" . }}  </div>  {{ partial "scripts.html" . }}</body></html>
 |