Jacky Zhao
2022-12-04 ce5df837f5f6ed57f9e9f85439ee9a40ebf234dc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{{if $.Site.Data.config.enableFooter}}
  {{if $.Site.Data.graphConfig.enableGlobalGraph}}
      <div class="page-end" id="footer">
 
        <div>
            {{partial "graph.html" .}}
        </div>
 
      </div>
  {{else}}
      <hr/>
      <div class="page-end" id="footer">
        <div class="backlinks-container">
            {{partial "backlinks.html" .}}
        </div>
        <div>
            {{partial "graph.html" .}}
        </div>
 
      </div>
  {{end}}
{{end}}
 
{{partial "contact.html" .}}