1
0
mirror of https://github.com/actix/actix-website synced 2024-11-24 16:52:59 +01:00
actix-website/layouts/code/baseof.html

24 lines
499 B
HTML
Raw Normal View History

2018-05-22 23:15:08 +02:00
{{ partial "header" . }}
2020-02-03 09:17:14 +01:00
{{ $currentURL := .RelPermalink }}
2018-05-22 23:15:08 +02:00
<div class="actix-pageheader">
<div class="container">
<h1 class="display-4">{{ .Title }}</h1>
{{ if .Description }}
<p class="lead">{{ .Description }}</p>
{{ end }}
</div>
</div>
<div class="container actix-community">
<div class="row">
<div class="col-md-6 offset-md-3">
<div class="actix-content">
{{ block "main" . }}{{ end }}
</div>
</div>
</div>
</div>
{{ partial "footer" . }}