mirror of
https://github.com/Aroy-Art/Rinkusu.git
synced 2024-12-27 07:44:23 +01:00
Added Codeblocks stylesheet
This commit is contained in:
parent
b97441e4f5
commit
29c556978f
1 changed files with 6 additions and 2 deletions
|
@ -15,14 +15,18 @@
|
|||
<link rel="stylesheet" href="{{ .link | absURL }}">
|
||||
{{ end }}
|
||||
|
||||
{{"<!-- Main Stylesheet -->" | safeHTML }}
|
||||
{{ "<!-- Main Stylesheet -->" | safeHTML }}
|
||||
{{ $styles := resources.Get "css/style.css" | minify }}
|
||||
<link rel="stylesheet" href="{{ $styles.Permalink }}" media="screen">
|
||||
|
||||
{{"<!-- Custom Stylesheet -->" | safeHTML}}
|
||||
{{ "<!-- Custom Stylesheet -->" | safeHTML }}
|
||||
{{ $custom := resources.Get "css/custom.css" | minify }}
|
||||
<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 }}
|
||||
<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">
|
||||
|
|
Loading…
Reference in a new issue