1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <!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">
- <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>
|