File: footer.html

package info (click to toggle)
node-mongodb 3.6.4%2B~cs11.13.19-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 76,604 kB
  • sloc: javascript: 138,083; python: 429; sh: 52; makefile: 37
file content (38 lines) | stat: -rw-r--r-- 771 bytes parent folder | download | duplicates (4)
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>