mirror of https://github.com/Hilbis/Hilbish
feat(website): improve doc side of website
parent
2032795815
commit
ce13e50579
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
title: Introduction
|
||||
layout: doc
|
||||
weight: -1
|
||||
---
|
||||
|
||||
Hello!
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Getting Started
|
||||
layout: doc
|
||||
weight: -10
|
||||
---
|
|
@ -1,9 +1,25 @@
|
|||
{{ define "main" }}
|
||||
<main>
|
||||
<div class="container">
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{.Content}}
|
||||
<div class="container mt-auto mt-auto py-3 row">
|
||||
<div class="container" style="width: 240px;">
|
||||
<div class="p-3 col">
|
||||
<ul class="nav nav-pills mb-auto">
|
||||
{{ $currentPage := . }}
|
||||
{{ range where site.Pages.ByWeight.Reverse "Type" "docs" }}
|
||||
<li class="nav-item">
|
||||
<a href="{{ .URL }}" class="nav-link">
|
||||
{{ .Title }}
|
||||
</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<div class="col">
|
||||
<div>
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{.Content}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
|
|
Loading…
Reference in New Issue