mirror of
https://github.com/kubesphere/website.git
synced 2025-12-26 00:12:48 +00:00
38 lines
1.2 KiB
HTML
38 lines
1.2 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.Permalink }}">
|
||
|
||
{{ $style := resources.Get "scss/markdown.scss" | toCSS | minify | fingerprint }}
|
||
<link rel="stylesheet" href="{{ $style.Permalink }}">
|
||
|
||
<body>
|
||
{{- partial "header.html" . -}}
|
||
<section class="main-section">
|
||
<div>
|
||
<div class='breadcrumb'>
|
||
<span>{{ i18n "introduction4"}} ></span>
|
||
<span>{{ .Title }}</span>
|
||
</div>
|
||
<div class='main-div'>
|
||
<div class='author'>{{ .Params.author }}</div>
|
||
<div class='date'>{{ i18n "introduction3" }}:{{ .Params.date }}</div>
|
||
<h1>{{ .Title }}</h1>
|
||
<div class='content'>
|
||
<div class='md-body'>
|
||
{{ .Content }}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class='aside'>
|
||
<div class='title'>Table of Contents</div>
|
||
<div class='tabs'>{{ .TableOfContents }}</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
{{- partial "footer.html" . -}}
|
||
</body>
|
||
|
||
</html> |