Skip to content

Commit b44cd8e

Browse files
committed
Fixing css import statements
Former-commit-id: b7964b9 [formerly dc45317] Former-commit-id: b5c5d04702007f748362294ca8dda7b1a31b87c8 Former-commit-id: 39734e7
1 parent 20db4a2 commit b44cd8e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

layouts/partials/init.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
<link rel="stylesheet" type="text/css" href="/css/semantic.min.css"/>
2-
<link rel="stylesheet" type="text/css" href="/css/site.css" />
1+
<link rel="stylesheet" type="text/css" href="/css/semantic.min.css">
2+
<link rel="stylesheet" type="text/css" href="/css/site.css">
33
{{ range $type, $val:= .Site.Params.customCSS }}
44
{{ if and ((gt (len $val) 0) (index $val "")) }}
55
<link rel="stylesheet" type="text/css" href="/{{ index $val }}">
66
{{ end }}
77
{{ end }}
8-
98
<script type="text/javascript" src="/js/jquery.min.js"></script>
109
<script type="text/javascript" src="/js/semantic.min.js"></script>
1110
<script type="text/javascript" src="/js/site.js"></script>

0 commit comments

Comments
 (0)