22 lines
774 B
HTML
22 lines
774 B
HTML
<!-- CSS External Libraries -->
|
|
<!-- Light Gallery-->
|
|
<link href="https://cdn.jsdelivr.net/lightgallery/1.3.9/css/lightgallery.min.css" rel="stylesheet">
|
|
<link href="https://cdn.jsdelivr.net/lightgallery/1.3.9/css/lg-transitions.min.css" rel="stylesheet">
|
|
|
|
<!-- Site Base CSS -->
|
|
<link href="/css/page.css" rel="stylesheet">
|
|
|
|
<!-- Site Navigation CSS -->
|
|
<link href="/css/navbar.css" rel="stylesheet">
|
|
|
|
<!-- Photo Gallery Styling with thumbsup -->
|
|
<link href="/css/thumbsup.css" rel="stylesheet">
|
|
|
|
<!-- configurable styles -->
|
|
{{ partial "head/styles.html" . }}
|
|
|
|
<!-- Custom/Override CSS files -->
|
|
{{ range .Site.Params.custom_css }}
|
|
<link rel="stylesheet" href="{{ $.Site.BaseURL }}{{ . }}">
|
|
{{ end }}
|