1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
{{- if .IsPage -}}
{{- $menuPrev := $.Scratch.Get "menu.Prev" -}}
{{- $menuNext := $.Scratch.Get "menu.Next" -}}
<div id="btnv">
{{- with $menuPrev -}}
<div class="pull-left">
<a class="navigation prev" href="{{.URL}}">
<i class="fa fa-long-arrow-left"> </i> {{ .Name }}
</a>
</div>
{{- end -}}
{{- with $menuNext -}}
<div class="pull-right">
<a class="navigation next" href="{{.URL}}">
{{ .Name }} <i class="fa fa-long-arrow-right"> </i>
</a>
{{- end -}}
</div>
</div>
{{- end -}}
</div>
{{- partial "rightColumn.html" . -}}
</div>
</div>
</div>
</section>
</section>
<!--main content end-->
</section>
<!-- container section end -->
<!-- javascripts -->
{{- partial "assets/javascripts.html" . -}}
{{- partial "assets/analytics.html" . -}}
</body>
</html>
|