mirror of
https://github.com/kubesphere/website.git
synced 2025-12-26 00:12:48 +00:00
41 lines
1.7 KiB
HTML
41 lines
1.7 KiB
HTML
<footer>
|
|
{{ $data := index .Site.Data .Site.Language.Lang }}
|
|
<div class="footer">
|
|
<div class="footer-main">
|
|
<div class="up-main">
|
|
<div class="left-div">
|
|
<img src="{{ .Site.Params.logo | absURL }}" alt="{{ .Site.Title }}" class="foot-logo">
|
|
<p>{{ i18n "introduction7" }}</p>
|
|
<div>
|
|
<input type="text" placeholder='{{ i18n "introduction6" }}'>
|
|
<button>{{ i18n "introduction5" }}</button>
|
|
</div>
|
|
</div>
|
|
<div class="right-div">
|
|
<ul>
|
|
{{ with $data.footer.footer }}
|
|
{{ range .list }}
|
|
<li>
|
|
<div class="h3">{{ .title }}</div>
|
|
{{ range .list }}
|
|
<a href="{{ .link }}">{{ .content }}</a>
|
|
{{ end }}
|
|
</li>
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="down-main">
|
|
<div class='img-div'>
|
|
<img src="/images/footer/facebook.svg" alt="">
|
|
<img src="/images/footer/youtube.svg" alt="">
|
|
<img src="/images/footer/slack.svg" alt="">
|
|
<img src="/images/footer/twitter.svg" alt="">
|
|
<img src="/images/footer/github.svg" alt="">
|
|
</div>
|
|
<p class='p1'>{{ i18n "introduction2" }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer> |