17 lines
		
	
	
		
			387 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			387 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
								 | 
							
								{{ define "main" }}
							 | 
						||
| 
								 | 
							
								<h2>{{ .Title }} </h2>
							 | 
						||
| 
								 | 
							
								<script src="//unpkg.com/vis-network@9.1.0/dist/vis-network.min.js"></script>
							 | 
						||
| 
								 | 
							
								<script type="module" src="{{ .Site.BaseURL }}/graph/graph.js"></script>
							 | 
						||
| 
								 | 
							
								<style>
							 | 
						||
| 
								 | 
							
								#graph-container {
							 | 
						||
| 
								 | 
							
								    width: 100%;
							 | 
						||
| 
								 | 
							
								    height: 50vh;
							 | 
						||
| 
								 | 
							
								    border-radius: 0.2rem;
							 | 
						||
| 
								 | 
							
								    border: .075rem solid #bfbfbf
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								</style>
							 | 
						||
| 
								 | 
							
								{{ .Content }}
							 | 
						||
| 
								 | 
							
								<div id="graph-container">
							 | 
						||
| 
								 | 
							
								</div>
							 | 
						||
| 
								 | 
							
								{{ end }}
							 |