Added Codeblocks stylesheet

This commit is contained in:
Aroy Art 2021-05-04 12:00:27 +02:00
parent b97441e4f5
commit 29c556978f

View file

@ -15,14 +15,18 @@
<link rel="stylesheet" href="{{ .link | absURL }}"> <link rel="stylesheet" href="{{ .link | absURL }}">
{{ end }} {{ end }}
{{"<!-- Main Stylesheet -->" | safeHTML }} {{ "<!-- Main Stylesheet -->" | safeHTML }}
{{ $styles := resources.Get "css/style.css" | minify }} {{ $styles := resources.Get "css/style.css" | minify }}
<link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen"> <link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen">
{{"<!-- Custom Stylesheet -->" | safeHTML}} {{ "<!-- Custom Stylesheet -->" | safeHTML }}
{{ $custom := resources.Get "css/custom.css" | minify }} {{ $custom := resources.Get "css/custom.css" | minify }}
<link rel="stylesheet" href="{{ $custom.Permalink }}" media="screen"> <link rel="stylesheet" href="{{ $custom.Permalink }}" media="screen">
{{ "<!-- Codeblocks Stylesheet -->" | safeHTML }}
{{ $style := resources.Get "css/syntax.css" | minify }}
<link rel="stylesheet" href="{{ $style.Permalink }}" media="screen">
{{ "<!--Favicon-->" | safeHTML }} {{ "<!--Favicon-->" | safeHTML }}
<link rel="shortcut icon" href="{{ `img/favicon.png` | absURL }}" type="image/x-icon"> <link rel="shortcut icon" href="{{ `img/favicon.png` | absURL }}" type="image/x-icon">
<link rel="icon" href="{{ `img/favicon.png` | absURL }}" type="image/x-icon"> <link rel="icon" href="{{ `img/favicon.png` | absURL }}" type="image/x-icon">