Remove Deperecated CSS and fix about
This commit is contained in:
parent
40f9da8b46
commit
87ac6d668e
|
@ -8,7 +8,7 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
|
||||
<meta charset="UTF-8"/>
|
||||
{{ $style := resources.Get "/scss/style.scss" | resources.ExecuteAsTemplate "/scss/style.scss" . | resources.ToCSS (dict "targetPath" "css/styles.css" "outputStyle" "compressed" "enableSourceMap" "true") | resources.Fingerprint "sha512" }}
|
||||
{{ $style := resources.Get "/scss/style.scss" | resources.ExecuteAsTemplate "/scss/style.scss" . | css.Sass (dict "targetPath" "css/styles.css" "outputStyle" "compressed" "enableSourceMap" "true") | resources.Fingerprint "sha512" }}
|
||||
<link type="text/css" rel="stylesheet" href="{{ $style.Permalink }}" integrity="{{ $style.Data.Integrity }}" />
|
||||
<style>
|
||||
.aboutfeeds {
|
||||
|
|
|
@ -5,7 +5,7 @@ draft: false
|
|||
---
|
||||
**Hello World**!
|
||||
|
||||
This is my blog. Theme was made by Gabriele Musco. Anyway my name is Evan, also known as fbievan- I'm currently a 16 year old teenager messing around with things on the internet. I'm currently in high school, and I really love **FOSS** software
|
||||
This is my blog. Theme was made by Gabriele Musco. Anyway my name is Evan, also known as fbievan- I'm currently a 18 year old guy messing around with things on the internet. I talk about software a lot on this blog.
|
||||
|
||||
|
||||
I do have a twitch channel under the same name as myself [fbievan](https://twitch.tv/fbievan3)
|
||||
|
@ -19,7 +19,6 @@ I am currently hosting these services on my server
|
|||
* [Pleroma](https://social.fbievan.live)
|
||||
* [Keyoxide](https://oxide.fbievan.live)
|
||||
|
||||
[Minecraft Map](https://map.fbievan.live) and Minecraft Server is down, for resource consumption basically
|
||||
|
||||
here is the [Source Code](https://git.fbievan.live/fbievan/website) for this site
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
{{ if and site.Params.cactusCommentsSiteName (.Params.comments | default true) }}
|
||||
<link rel="stylesheet" href="https://latest.cactus.chat/style.css" type="text/css">
|
||||
{{ end }}
|
||||
{{ $style := resources.Get "/scss/style.scss" | resources.ExecuteAsTemplate "/scss/style.scss" . | resources.ToCSS (dict "targetPath" "css/styles.css" "outputStyle" "compressed" "enableSourceMap" "true") | resources.Fingerprint "sha512" }}
|
||||
{{ $style := resources.Get "/scss/style.scss" | resources.ExecuteAsTemplate "/scss/style.scss" . | css.Sass (dict "targetPath" "css/styles.css" "outputStyle" "compressed" "enableSourceMap" "true") | resources.Fingerprint "sha512" }}
|
||||
<link type="text/css" rel="stylesheet" href={{ $style.Permalink }} integrity="{{ $style.Data.Integrity }}" />
|
||||
{{- partial "inject/head.html" . -}}
|
||||
{{- partial "head_meta_seo.html" . -}}
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit bdd277c494b50719ce41f4e8f35d797e7fdc8ace
|
||||
Subproject commit 769f01ad4363bd2ad7e8ae4a1535b54c68d9369d
|
Loading…
Reference in New Issue