mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
17 lines
384 B
HTML
17 lines
384 B
HTML
<div class="well">
|
|
<strong>Résumé</strong><br/>
|
|
{{.Inner}}
|
|
|
|
<div><strong>Sur cette page</strong></div>
|
|
{{.Page.TableOfContents}}
|
|
<div><strong>Pages liées</strong></div>
|
|
<ul>
|
|
{{ range sort .Page.Sections }}
|
|
<li><a href="{{.URL}}" >{{ .Title }}</a></li>
|
|
{{ end }}
|
|
{{ range sort .Page.Pages }}
|
|
<li><a href="{{.URL}}" >{{ .Title }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|