21 lines
		
	
	
		
			925 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			925 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<footer class="footer-mobile">
 | 
						|
	{{ partial "social.html" . }}
 | 
						|
 | 
						|
	<div class="footer-mobile-links">
 | 
						|
        <p><a href="https://git.ivayloivanov.eu/ivo/hugo-theme-noteworthy" target="_blank" rel="noopener">{{ i18n "noteworthy_theme" }}</a></p>
 | 
						|
		<span class="divider-bar">|</span>
 | 
						|
        <p><a href="https://gohugo.io" target="_blank" rel="noopener">{{ i18n "built_with_hugo" }}</a></p>
 | 
						|
	</div>
 | 
						|
 | 
						|
	{{ $script := resources.Get "js/main.js" | minify | fingerprint -}}
 | 
						|
	<script src="{{ $script.Permalink }}" {{ printf "integrity=%q" $script.Data.Integrity | safeHTMLAttr }} crossorigin="anonymous"></script>
 | 
						|
 | 
						|
  {{ $js := resources.Get "js/gallery.js" }}
 | 
						|
  {{ $jsFile := $js | resources.Minify }}
 | 
						|
  <script type="text/javascript" src="{{ $jsFile.Permalink }}"></script>
 | 
						|
 | 
						|
  {{ $css := resources.Get "css/gallery.css" }}
 | 
						|
  {{ $cssFile := $css | resources.Minify }}
 | 
						|
  <link href="{{ $cssFile.Permalink }}" rel="stylesheet">
 | 
						|
</footer>
 |