25 lines
		
	
	
		
			914 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			914 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <footer class="footer">
 | |
|   <div class="footer__inner">
 | |
|     {{ if $.Site.Copyright }}
 | |
|       <div class="copyright copyright--user">
 | |
|         <span>{{ $.Site.Copyright | safeHTML }}</span>
 | |
|     {{else}}
 | |
|       <div class="copyright">
 | |
|         <span>© {{ now.Year }} Powered by <a href="http://gohugo.io">Hugo</a></span>
 | |
|     {{end}}
 | |
|         <span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
 | |
|       </div>
 | |
|   </div>
 | |
| </footer>
 | |
| 
 | |
| {{ $js := resources.Get "js/main.js" | js.Build }}
 | |
| {{ $js := resources.Get "js/prism.js" | js.Build }}
 | |
| {{ $opts := dict "noComments" true "minified" true "compact" true }}
 | |
| {{ $menu := resources.Get "js/menu.js" | js.Build | babel $opts }}
 | |
| {{ $prism := resources.Get "js/prism.js" | js.Build | babel $opts }}
 | |
| <script src="{{ $menu.Permalink }}"></script>
 | |
| <script src="{{ $prism.Permalink }}"></script>
 | |
| 
 | |
| <!-- Extended footer section-->
 | |
| {{ partial "extended_footer.html" . }}
 |