mirror of https://github.com/grpc/grpc.io.git
44 lines
865 B
HTML
44 lines
865 B
HTML
|
|
{{ define "title" }}
|
|
{{ .Title }} – {{ .Site.Title }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
{{ $currentUrl := .RelPermalink }}
|
|
{{ $quickstartDocs := where site.Pages ".Layout" "quickstart" }}
|
|
|
|
<div class="headertext">Documentation</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{ partial "docs-topnav.html" . }}
|
|
|
|
<div class="quickstartcols">
|
|
|
|
<div class="quickstartcol1">
|
|
|
|
<h8>Quick Start</h8>
|
|
|
|
<a href="/docs/quickstart">
|
|
Quick Start Home
|
|
</a>
|
|
|
|
{{ range $quickstartDocs }}
|
|
{{ $isCurrentPage := eq $currentUrl .RelPermalink }}
|
|
{{ $title := .Params.short }}
|
|
<a href="{{ .RelPermalink }}"{{ if $isCurrentPage }} class="active"{{ end }}>
|
|
{{ $title }}
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
|
|
<div class="quickstartcol2" style="margin-top:4%">
|
|
<h3 style="margin-top:0px;">{{ .Title }}</h3>
|
|
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
{{ end }} |