Compare commits
2 Commits
52762fb14a
...
c8795db7dc
Author | SHA1 | Date |
---|---|---|
Amolith | c8795db7dc | |
Amolith | ab658a8750 |
|
@ -1,11 +1,11 @@
|
|||
---
|
||||
title: Creating an open source NAS
|
||||
description: My process for building an open source NAS with a powerful single board computer and a couple of large HDDs
|
||||
tags:
|
||||
tags:
|
||||
- Sysadmin
|
||||
- NAS
|
||||
- Backups
|
||||
date: 2020-03-09 23:43 -0400
|
||||
date: 2020-03-09T23:43:00-04:00
|
||||
cover: /assets/posts/disk.png
|
||||
draft: true
|
||||
---
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
layout: post
|
||||
title: Email & privacy/security concerns
|
||||
cover: ./cover.png
|
||||
date: 2020-03-21 01:46 -0400
|
||||
date: 2020-03-21T01:46:00-0400
|
||||
draft: true
|
||||
---
|
||||
|
||||
|
|
|
@ -38,11 +38,20 @@
|
|||
<meta property="og:image" content="{{ if .IsHome }}{{ .Site.Params.cover }}{{ else }}{{ .Params.Cover }}{{ end }}" />
|
||||
|
||||
<!-- Styles -->
|
||||
{{ $options := (dict "outputStyle" "compressed" "enableSourceMap" true) }}
|
||||
{{ $scss := resources.Get "scss/imports.scss" }}
|
||||
{{ $style := $scss | resources.ToCSS $options }}
|
||||
<link rel="preload" href="{{ $style.RelPermalink }}?{{ now.Unix }}" as="style">
|
||||
<link rel="stylesheet" href="{{ $style.RelPermalink }}?{{ now.Unix }}">
|
||||
{{ with resources.Get "scss/imports.scss" }}
|
||||
{{ $opts := dict "outputStyle" "compressed" "enabledSourceMap" true "transpiler" "libsass" "targetPath" "css/style.css" }}
|
||||
{{ with . | toCSS $opts }}
|
||||
{{ if hugo.IsDevelopment }}
|
||||
<link rel="preload" href="{{ .RelPermalink }}" as="style">
|
||||
<link rel="stylesheet" href="{{ .RelPermalink }}">
|
||||
{{ else }}
|
||||
{{ with . | minify | fingerprint }}
|
||||
<link rel="preload" href="{{ .RelPermalink }}" as="style">
|
||||
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
{{ partialCached "favicons.html" . }}
|
||||
|
||||
|
|
Loading…
Reference in New Issue