Merge pull request #140 from DhammaCharts/hugo
commit
34b0353797
@ -1,6 +1,37 @@
|
|||||||
enableLegend: false
|
# if true, a Global Graph will be shown on home page with full width, no backlink.
|
||||||
enableDrag: true
|
# A different set of Local Graphs will be shown on sub pages.
|
||||||
enableZoom: true
|
# if false, Local Graph will be default on every page as usual
|
||||||
depth: -1 # set to -1 to show full graph
|
enableGlobalGraph: false
|
||||||
|
|
||||||
|
### Local Graph ###
|
||||||
|
|
||||||
|
localGraph:
|
||||||
|
enableLegend: false
|
||||||
|
enableDrag: true
|
||||||
|
enableZoom: true
|
||||||
|
depth: 1 # set to -1 to show full graph
|
||||||
|
scale: 1.2
|
||||||
|
repelForce: 2
|
||||||
|
centerForce: 1
|
||||||
|
linkDistance: 1
|
||||||
|
fontSize: 0.6
|
||||||
|
opacityScale: 3
|
||||||
|
|
||||||
|
### Global Graph ###
|
||||||
|
|
||||||
|
globalGraph:
|
||||||
|
enableLegend: false
|
||||||
|
enableDrag: true
|
||||||
|
enableZoom: true
|
||||||
|
depth: -1 # set to -1 to show full graph
|
||||||
|
scale: 1.4
|
||||||
|
repelForce: 1
|
||||||
|
centerForce: 1
|
||||||
|
linkDistance: 1
|
||||||
|
fontSize: 0.5
|
||||||
|
opacityScale: 3
|
||||||
|
|
||||||
|
### For all graphs ###
|
||||||
|
|
||||||
paths:
|
paths:
|
||||||
- /moc: "#4388cc"
|
- /moc: "#4388cc"
|
@ -0,0 +1,24 @@
|
|||||||
|
{{if $.Site.Data.config.enableFooter}}
|
||||||
|
{{if $.Site.Data.graphConfig.enableGlobalGraph}}
|
||||||
|
<div class="page-end">
|
||||||
|
|
||||||
|
<div>
|
||||||
|
{{partial "graph.html" .}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{{else}}
|
||||||
|
<hr/>
|
||||||
|
<div class="page-end">
|
||||||
|
<div class="backlinks-container">
|
||||||
|
{{partial "backlinks.html" .}}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
{{partial "graph.html" .}}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{{end}}
|
||||||
|
{{end}}
|
||||||
|
|
||||||
|
{{partial "contact.html" .}}
|
Loading…
Reference in New Issue