mirror of
https://github.com/kubesphere/website.git
synced 2025-12-26 00:12:48 +00:00
45 lines
1.6 KiB
HTML
45 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
|
||
{{- partial "head.html" . -}}
|
||
|
||
{{ $style := resources.Get "scss/content.scss" | toCSS | minify | fingerprint }}
|
||
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
|
||
|
||
{{ $style := resources.Get "scss/markdown.scss" | toCSS | minify | fingerprint }}
|
||
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
|
||
|
||
<body>
|
||
{{- partial "header.html" . -}}
|
||
<section class="main-section {{ if eq .Site.Language.Lang "zh"}} padding{{ end }}">
|
||
<div class="common-layout">
|
||
<div class='breadcrumb'>
|
||
<span><a href='{{ "blogs" | relLangURL }}'>{{ i18n "introduction1"}}</a> > </span>
|
||
<span>{{ .Title }}</span>
|
||
</div>
|
||
<div class='main-div'>
|
||
<div class='author'>{{ .Params.author }}</div>
|
||
<div class='date'>{{ i18n "introduction3" }}:{{ string .Params.createTime }}</div>
|
||
<h1>{{ .Title }}</h1>
|
||
<div class="share-1">
|
||
{{- partial "share.html" . -}}
|
||
</div>
|
||
<div class='content'>
|
||
<div class='md-body'>
|
||
{{ .Content }}
|
||
</div>
|
||
</div>
|
||
<div class="share-2">
|
||
{{- partial "share.html" . -}}
|
||
</div>
|
||
</div>
|
||
<div class='aside aside-fixed'>
|
||
<div class='title'>Table of Contents</div>
|
||
<div class='tabs'>{{ .TableOfContents }}</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
{{- partial "footer.html" . -}}
|
||
<script src='{{ "js/aside.js" | relURL }}'></script>
|
||
</body>
|
||
|
||
</html> |