Revert "fix wrong load stylesheet and JS on multihost (multilingual) #126"
Doesn't work with multilingual config with no specific baseurl
This reverts commit ad79fdaf83.
			
			
This commit is contained in:
		
							parent
							
								
									ad79fdaf83
								
							
						
					
					
						commit
						e02df37142
					
				|  | @ -21,11 +21,11 @@ | |||
| {{- if (and (eq .Kind "page") (ne .Layout "archives") (ne .Layout "search") (not $isHLJSdisabled)) }} | ||||
| {{- if not .Site.Params.assets.disableFingerprinting }} | ||||
| {{- $highlight := slice (resources.Get "js/highlight.min.js") | resources.Concat "assets/js/highlight.js" | minify | fingerprint }} | ||||
| <script defer src="{{ $highlight.RelPermalink | absLangURL }}" integrity="{{ $highlight.Data.Integrity }}" | ||||
| <script defer src="{{ $highlight.RelPermalink }}" integrity="{{ $highlight.Data.Integrity }}" | ||||
|     onload="hljs.initHighlightingOnLoad();"></script> | ||||
| {{- else}} | ||||
| {{- $highlight := slice (resources.Get "js/highlight.min.js") | resources.Concat "assets/js/highlight.js" | minify }} | ||||
| <script defer src="{{ $highlight.RelPermalink | absLangURL }}" onload="hljs.initHighlightingOnLoad();"></script> | ||||
| <script defer src="{{ $highlight.RelPermalink }}" onload="hljs.initHighlightingOnLoad();"></script> | ||||
| {{- end}} | ||||
| {{- end }} | ||||
| <script> | ||||
|  |  | |||
|  | @ -29,10 +29,10 @@ | |||
| 
 | ||||
| {{- if not .Site.Params.assets.disableFingerprinting }} | ||||
| {{- $stylesheet := $stylesheet | fingerprint -}} | ||||
| <link href="{{ $stylesheet.RelPermalink | absLangURL }}" integrity="{{ $stylesheet.Data.Integrity }}" rel="preload stylesheet" | ||||
| <link href="{{ $stylesheet.RelPermalink }}" integrity="{{ $stylesheet.Data.Integrity }}" rel="preload stylesheet" | ||||
|     as="style"> | ||||
| {{- else}} | ||||
| <link href="{{ $stylesheet.RelPermalink | absLangURL }}" rel="preload stylesheet" as="style"> | ||||
| <link href="{{ $stylesheet.RelPermalink }}" rel="preload stylesheet" as="style"> | ||||
| {{- end}} | ||||
| <!-- Search --> | ||||
| {{- if (eq .Layout `search`) -}} | ||||
|  | @ -41,10 +41,10 @@ | |||
| {{- $fusejs := resources.Get "js/fuse.js" }} | ||||
| {{- if not .Site.Params.assets.disableFingerprinting }} | ||||
| {{- $search := (slice $fusejs $fastsearch ) | resources.Concat "assets/js/search.js" | minify | fingerprint }} | ||||
| <script defer src="{{ $search.RelPermalink | absLangURL }}" onload="loadSearch();" integrity="{{ $search.Data.Integrity }}"></script> | ||||
| <script defer src="{{ $search.RelPermalink }}" onload="loadSearch();" integrity="{{ $search.Data.Integrity }}"></script> | ||||
| {{- else}} | ||||
| {{ $search := (slice $fusejs $fastsearch ) | resources.Concat "assets/js/search.js" | minify }} | ||||
| <script defer src="{{ $search.RelPermalink | absLangURL }}" onload="loadSearch();"></script> | ||||
| <script defer src="{{ $search.RelPermalink }}" onload="loadSearch();"></script> | ||||
| {{- end}} | ||||
| {{- end -}} | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue
	
	 Aditya Telange
						Aditya Telange