diff --git a/Makefile b/Makefile
index b9fdd0d36df4cff463b1f127425d23e41e0c9fa1..a5553fc07ae480073257ff8d82a48f5830d609b6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,5 @@
-
-
all: openring
- hugo
+ hugo --minify
serve: openring
hugo serve
diff --git a/config.toml b/config.toml
index bf38398cf8a64339db5355752b329c005e5b4395..48c278a3d2a81d0e26417f2d88ac2af360ba71c4 100644
--- a/config.toml
+++ b/config.toml
@@ -10,6 +10,8 @@ email = "mail@gabrielgio.me"
[markup]
defaultMarkdownHandler = "goldmark"
+ [markup.highlight]
+ style='abap'
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
diff --git a/themes/flamingo/assets/scss/_fonts.scss b/themes/flamingo/assets/scss/_fonts.scss
index 586ad0afb5fc29ba679719f79994b98295a4191e..5add784fbca99b088d79725360a624bdda09f6f0 100644
--- a/themes/flamingo/assets/scss/_fonts.scss
+++ b/themes/flamingo/assets/scss/_fonts.scss
@@ -1,10 +1,6 @@
-* {
- box-sizing: border-box;
- font-family: 'DejaVu Sans';
-
-}
body {
margin: 0;
+ font-family: 'DejaVu Sans';
}
h1, h2, h3, h4 {
font-weight: 400;
@@ -13,9 +9,6 @@ code[class*="language-"], nav, .blog-list {
font-style: normal;
font-weight: 400;
font-size: 1.025rem;
-}
-code {
- font-family: "DejaVu Sans Mono";
}
tags {
diff --git a/themes/flamingo/layouts/_default/baseof.html b/themes/flamingo/layouts/_default/baseof.html
index 0be16e545e7428460ff70838072f03d7390eeb9d..d253d7261bf175689b1590fbe660dc603654f4d0 100644
--- a/themes/flamingo/layouts/_default/baseof.html
+++ b/themes/flamingo/layouts/_default/baseof.html
@@ -4,17 +4,11 @@ <head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
-
{{ with .Site.Params.favicon }}<link rel="icon" type="image/png" href="{{ . }}" />{{ end }}
-
<title itemprop="name"> {{ .Title }} </title>
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
{{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
-
- {{ with resources.Get "scss/main.scss" | toCSS | minify }}
- <style>{{ .Content | safeCSS }}</style>
- {{ end }}
-
+ {{ with resources.Get "scss/main.scss" | toCSS | minify }}<style>{{ .Content | safeCSS }}</style>{{ end }}
{{ partial "meta" . }}
</head>
<body>