| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 | <!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 "nav.html" . }}    {{ partial "breadcrumbs.html" . }}    <div id="content">      <div class="container">        <div class="row">          <div class="col-md-9" id="blog-post">            <section class="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 class="col-md-3">            {{ partial "sidebar.html" . }}          </div> -->        </div>      </div>    </div>    {{ partial "LP_components/Footer.html" . }}  </div>  {{ partial "scripts.html" . }}</body></html>
 |