Skip to content

Commit 60213df

Browse files
committed
blog refresh
0 parents  commit 60213df

File tree

114 files changed

+16452
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+16452
-0
lines changed

.github/workflows/hugo.yml

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# Sample workflow for building and deploying a Hugo site to GitHub Pages
2+
name: Deploy Hugo site to Pages
3+
4+
on:
5+
# Runs on pushes targeting the default branch
6+
push:
7+
branches: ["main"]
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13+
permissions:
14+
contents: read
15+
pages: write
16+
id-token: write
17+
18+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20+
concurrency:
21+
group: "pages"
22+
cancel-in-progress: false
23+
24+
# Default to bash
25+
defaults:
26+
run:
27+
shell: bash
28+
29+
jobs:
30+
# Build job
31+
build:
32+
runs-on: ubuntu-latest
33+
env:
34+
HUGO_VERSION: 0.128.0
35+
steps:
36+
- name: Install Hugo CLI
37+
run: |
38+
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
39+
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
40+
- name: Install Dart Sass
41+
run: sudo snap install dart-sass
42+
- name: Checkout
43+
uses: actions/checkout@v4
44+
with:
45+
submodules: recursive
46+
- name: Setup Pages
47+
id: pages
48+
uses: actions/configure-pages@v5
49+
- name: Install Node.js dependencies
50+
run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
51+
- name: Build with Hugo
52+
env:
53+
HUGO_CACHEDIR: ${{ runner.temp }}/hugo_cache
54+
HUGO_ENVIRONMENT: production
55+
run: |
56+
hugo \
57+
--minify \
58+
--baseURL "${{ steps.pages.outputs.base_url }}/"
59+
- name: Upload artifact
60+
uses: actions/upload-pages-artifact@v3
61+
with:
62+
path: ./public
63+
64+
# Deployment job
65+
deploy:
66+
environment:
67+
name: github-pages
68+
url: ${{ steps.deployment.outputs.page_url }}
69+
runs-on: ubuntu-latest
70+
needs: build
71+
steps:
72+
- name: Deploy to GitHub Pages
73+
id: deployment
74+
uses: actions/deploy-pages@v4
75+

.gitmodules

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[submodule "themes/blowfish"]
2+
path = themes/blowfish
3+
url = https://github.com/nunocoracao/blowfish.git
4+
branch = main

.hugo_build.lock

Whitespace-only changes.

CNAME

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
netops2devops.net

archetypes/default.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
date = '{{ .Date }}'
3+
draft = true
4+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
5+
+++

assets/css/xcode-dark.css

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
/* Generated using: hugo gen chromastyles --style=xcode-dark */
2+
3+
/* Background */ .bg { color:#fff;background-color:#1f1f24; }
4+
/* PreWrapper */ .chroma { color:#fff;background-color:#1f1f24; }
5+
/* Other */ .chroma .x { }
6+
/* Error */ .chroma .err { color:#960050 }
7+
/* CodeLine */ .chroma .cl { }
8+
/* LineLink */ .chroma .lnlinks { outline:none;text-decoration:none;color:inherit }
9+
/* LineTableTD */ .chroma .lntd { vertical-align:top;padding:0;margin:0;border:0; }
10+
/* LineTable */ .chroma .lntable { border-spacing:0;padding:0;margin:0;border:0; }
11+
/* LineHighlight */ .chroma .hl { background-color:#353539 }
12+
/* LineNumbersTable */ .chroma .lnt { white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f }
13+
/* LineNumbers */ .chroma .ln { white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f }
14+
/* Line */ .chroma .line { display:flex; }
15+
/* Keyword */ .chroma .k { color:#fc5fa3 }
16+
/* KeywordConstant */ .chroma .kc { color:#fc5fa3 }
17+
/* KeywordDeclaration */ .chroma .kd { color:#fc5fa3 }
18+
/* KeywordNamespace */ .chroma .kn { color:#fc5fa3 }
19+
/* KeywordPseudo */ .chroma .kp { color:#fc5fa3 }
20+
/* KeywordReserved */ .chroma .kr { color:#fc5fa3 }
21+
/* KeywordType */ .chroma .kt { color:#fc5fa3 }
22+
/* Name */ .chroma .n { }
23+
/* NameAttribute */ .chroma .na { }
24+
/* NameBuiltin */ .chroma .nb { color:#d0a8ff }
25+
/* NameBuiltinPseudo */ .chroma .bp { color:#a167e6 }
26+
/* NameClass */ .chroma .nc { color:#5dd8ff }
27+
/* NameConstant */ .chroma .no { }
28+
/* NameDecorator */ .chroma .nd { }
29+
/* NameEntity */ .chroma .ni { }
30+
/* NameException */ .chroma .ne { }
31+
/* NameFunction */ .chroma .nf { color:#41a1c0 }
32+
/* NameFunctionMagic */ .chroma .fm { }
33+
/* NameLabel */ .chroma .nl { }
34+
/* NameNamespace */ .chroma .nn { }
35+
/* NameOther */ .chroma .nx { }
36+
/* NameProperty */ .chroma .py { }
37+
/* NameTag */ .chroma .nt { }
38+
/* NameVariable */ .chroma .nv { color:#41a1c0 }
39+
/* NameVariableClass */ .chroma .vc { }
40+
/* NameVariableGlobal */ .chroma .vg { }
41+
/* NameVariableInstance */ .chroma .vi { }
42+
/* NameVariableMagic */ .chroma .vm { }
43+
/* Literal */ .chroma .l { }
44+
/* LiteralDate */ .chroma .ld { }
45+
/* LiteralString */ .chroma .s { color:#fc6a5d }
46+
/* LiteralStringAffix */ .chroma .sa { color:#fc6a5d }
47+
/* LiteralStringBacktick */ .chroma .sb { color:#fc6a5d }
48+
/* LiteralStringChar */ .chroma .sc { color:#fc6a5d }
49+
/* LiteralStringDelimiter */ .chroma .dl { color:#fc6a5d }
50+
/* LiteralStringDoc */ .chroma .sd { color:#fc6a5d }
51+
/* LiteralStringDouble */ .chroma .s2 { color:#fc6a5d }
52+
/* LiteralStringEscape */ .chroma .se { color:#fc6a5d }
53+
/* LiteralStringHeredoc */ .chroma .sh { color:#fc6a5d }
54+
/* LiteralStringInterpol */ .chroma .si { }
55+
/* LiteralStringOther */ .chroma .sx { color:#fc6a5d }
56+
/* LiteralStringRegex */ .chroma .sr { color:#fc6a5d }
57+
/* LiteralStringSingle */ .chroma .s1 { color:#fc6a5d }
58+
/* LiteralStringSymbol */ .chroma .ss { color:#fc6a5d }
59+
/* LiteralNumber */ .chroma .m { color:#d0bf69 }
60+
/* LiteralNumberBin */ .chroma .mb { color:#d0bf69 }
61+
/* LiteralNumberFloat */ .chroma .mf { color:#d0bf69 }
62+
/* LiteralNumberHex */ .chroma .mh { color:#d0bf69 }
63+
/* LiteralNumberInteger */ .chroma .mi { color:#d0bf69 }
64+
/* LiteralNumberIntegerLong */ .chroma .il { color:#d0bf69 }
65+
/* LiteralNumberOct */ .chroma .mo { color:#d0bf69 }
66+
/* Operator */ .chroma .o { }
67+
/* OperatorWord */ .chroma .ow { }
68+
/* Punctuation */ .chroma .p { }
69+
/* Comment */ .chroma .c { color:#6c7986 }
70+
/* CommentHashbang */ .chroma .ch { color:#6c7986 }
71+
/* CommentMultiline */ .chroma .cm { color:#6c7986 }
72+
/* CommentSingle */ .chroma .c1 { color:#6c7986 }
73+
/* CommentSpecial */ .chroma .cs { color:#6c7986;font-style:italic }
74+
/* CommentPreproc */ .chroma .cp { color:#fd8f3f }
75+
/* CommentPreprocFile */ .chroma .cpf { color:#fd8f3f }
76+
/* Generic */ .chroma .g { }
77+
/* GenericDeleted */ .chroma .gd { }
78+
/* GenericEmph */ .chroma .ge { }
79+
/* GenericError */ .chroma .gr { }
80+
/* GenericHeading */ .chroma .gh { }
81+
/* GenericInserted */ .chroma .gi { }
82+
/* GenericOutput */ .chroma .go { }
83+
/* GenericPrompt */ .chroma .gp { }
84+
/* GenericStrong */ .chroma .gs { }
85+
/* GenericSubheading */ .chroma .gu { }
86+
/* GenericTraceback */ .chroma .gt { }
87+
/* GenericUnderline */ .chroma .gl { }
88+
/* TextWhitespace */ .chroma .w { }

assets/css/xcode.css

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
/* Generated using: hugo gen chromastyles --style=xcode */
2+
3+
/* Background */ .bg { background-color:#fff; }
4+
/* PreWrapper */ .chroma { background-color:#fff; }
5+
/* Other */ .chroma .x { }
6+
/* Error */ .chroma .err { color:#000 }
7+
/* CodeLine */ .chroma .cl { }
8+
/* LineLink */ .chroma .lnlinks { outline:none;text-decoration:none;color:inherit }
9+
/* LineTableTD */ .chroma .lntd { vertical-align:top;padding:0;margin:0;border:0; }
10+
/* LineTable */ .chroma .lntable { border-spacing:0;padding:0;margin:0;border:0; }
11+
/* LineHighlight */ .chroma .hl { background-color:#e5e5e5 }
12+
/* LineNumbersTable */ .chroma .lnt { white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f }
13+
/* LineNumbers */ .chroma .ln { white-space:pre;-webkit-user-select:none;user-select:none;margin-right:0.4em;padding:0 0.4em 0 0.4em;color:#7f7f7f }
14+
/* Line */ .chroma .line { display:flex; }
15+
/* Keyword */ .chroma .k { color:#a90d91 }
16+
/* KeywordConstant */ .chroma .kc { color:#a90d91 }
17+
/* KeywordDeclaration */ .chroma .kd { color:#a90d91 }
18+
/* KeywordNamespace */ .chroma .kn { color:#a90d91 }
19+
/* KeywordPseudo */ .chroma .kp { color:#a90d91 }
20+
/* KeywordReserved */ .chroma .kr { color:#a90d91 }
21+
/* KeywordType */ .chroma .kt { color:#a90d91 }
22+
/* Name */ .chroma .n { color:#000 }
23+
/* NameAttribute */ .chroma .na { color:#836c28 }
24+
/* NameBuiltin */ .chroma .nb { color:#a90d91 }
25+
/* NameBuiltinPseudo */ .chroma .bp { color:#5b269a }
26+
/* NameClass */ .chroma .nc { color:#3f6e75 }
27+
/* NameConstant */ .chroma .no { color:#000 }
28+
/* NameDecorator */ .chroma .nd { color:#000 }
29+
/* NameEntity */ .chroma .ni { color:#000 }
30+
/* NameException */ .chroma .ne { color:#000 }
31+
/* NameFunction */ .chroma .nf { color:#000 }
32+
/* NameFunctionMagic */ .chroma .fm { color:#000 }
33+
/* NameLabel */ .chroma .nl { color:#000 }
34+
/* NameNamespace */ .chroma .nn { color:#000 }
35+
/* NameOther */ .chroma .nx { color:#000 }
36+
/* NameProperty */ .chroma .py { color:#000 }
37+
/* NameTag */ .chroma .nt { color:#000 }
38+
/* NameVariable */ .chroma .nv { color:#000 }
39+
/* NameVariableClass */ .chroma .vc { color:#000 }
40+
/* NameVariableGlobal */ .chroma .vg { color:#000 }
41+
/* NameVariableInstance */ .chroma .vi { color:#000 }
42+
/* NameVariableMagic */ .chroma .vm { color:#000 }
43+
/* Literal */ .chroma .l { color:#1c01ce }
44+
/* LiteralDate */ .chroma .ld { color:#1c01ce }
45+
/* LiteralString */ .chroma .s { color:#c41a16 }
46+
/* LiteralStringAffix */ .chroma .sa { color:#c41a16 }
47+
/* LiteralStringBacktick */ .chroma .sb { color:#c41a16 }
48+
/* LiteralStringChar */ .chroma .sc { color:#2300ce }
49+
/* LiteralStringDelimiter */ .chroma .dl { color:#c41a16 }
50+
/* LiteralStringDoc */ .chroma .sd { color:#c41a16 }
51+
/* LiteralStringDouble */ .chroma .s2 { color:#c41a16 }
52+
/* LiteralStringEscape */ .chroma .se { color:#c41a16 }
53+
/* LiteralStringHeredoc */ .chroma .sh { color:#c41a16 }
54+
/* LiteralStringInterpol */ .chroma .si { color:#c41a16 }
55+
/* LiteralStringOther */ .chroma .sx { color:#c41a16 }
56+
/* LiteralStringRegex */ .chroma .sr { color:#c41a16 }
57+
/* LiteralStringSingle */ .chroma .s1 { color:#c41a16 }
58+
/* LiteralStringSymbol */ .chroma .ss { color:#c41a16 }
59+
/* LiteralNumber */ .chroma .m { color:#1c01ce }
60+
/* LiteralNumberBin */ .chroma .mb { color:#1c01ce }
61+
/* LiteralNumberFloat */ .chroma .mf { color:#1c01ce }
62+
/* LiteralNumberHex */ .chroma .mh { color:#1c01ce }
63+
/* LiteralNumberInteger */ .chroma .mi { color:#1c01ce }
64+
/* LiteralNumberIntegerLong */ .chroma .il { color:#1c01ce }
65+
/* LiteralNumberOct */ .chroma .mo { color:#1c01ce }
66+
/* Operator */ .chroma .o { color:#000 }
67+
/* OperatorWord */ .chroma .ow { color:#000 }
68+
/* Punctuation */ .chroma .p { }
69+
/* Comment */ .chroma .c { color:#177500 }
70+
/* CommentHashbang */ .chroma .ch { color:#177500 }
71+
/* CommentMultiline */ .chroma .cm { color:#177500 }
72+
/* CommentSingle */ .chroma .c1 { color:#177500 }
73+
/* CommentSpecial */ .chroma .cs { color:#177500 }
74+
/* CommentPreproc */ .chroma .cp { color:#633820 }
75+
/* CommentPreprocFile */ .chroma .cpf { color:#633820 }
76+
/* Generic */ .chroma .g { }
77+
/* GenericDeleted */ .chroma .gd { }
78+
/* GenericEmph */ .chroma .ge { }
79+
/* GenericError */ .chroma .gr { }
80+
/* GenericHeading */ .chroma .gh { }
81+
/* GenericInserted */ .chroma .gi { }
82+
/* GenericOutput */ .chroma .go { }
83+
/* GenericPrompt */ .chroma .gp { }
84+
/* GenericStrong */ .chroma .gs { }
85+
/* GenericSubheading */ .chroma .gu { }
86+
/* GenericTraceback */ .chroma .gt { }
87+
/* GenericUnderline */ .chroma .gl { }
88+
/* TextWhitespace */ .chroma .w { }

assets/img/gopher.png

260 KB
Loading

assets/img/rack.jpeg

3.06 MB
Loading

assets/img/rpi.jpeg

2.21 MB
Loading

config/_default/hugo.toml

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# -- Site Configuration --
2+
# Refer to the theme docs for more details about each of these parameters.
3+
# https://blowfish.page/docs/getting-started/
4+
5+
theme = "blowfish"
6+
baseURL = "https://netops2devops.net"
7+
defaultContentLanguage = "en"
8+
9+
# pluralizeListTitles = "true" # hugo function useful for non-english languages, find out more in https://gohugo.io/getting-started/configuration/#pluralizelisttitles
10+
11+
enableRobotsTXT = true
12+
summaryLength = 0
13+
14+
buildDrafts = false
15+
buildFuture = false
16+
17+
enableEmoji = true
18+
19+
# googleAnalytics = "G-XXXXXXXXX"
20+
21+
[pagination]
22+
pagerSize = 10
23+
24+
[imaging]
25+
anchor = 'Center'
26+
27+
[taxonomies]
28+
tag = "tags"
29+
category = "categories"
30+
author = "authors"
31+
series = "series"
32+
33+
[sitemap]
34+
changefreq = 'daily'
35+
filename = 'sitemap.xml'
36+
priority = 0.5
37+
38+
[outputs]
39+
home = ["HTML", "RSS", "JSON"]
40+
41+
[related]
42+
threshold = 0
43+
toLower = false
44+
45+
[[related.indices]]
46+
name = "tags"
47+
weight = 100
48+
49+
[[related.indices]]
50+
name = "categories"
51+
weight = 100
52+
53+
[[related.indices]]
54+
name = "series"
55+
weight = 50
56+
57+
[[related.indices]]
58+
applyFilter = false
59+
name = 'fragmentrefs'
60+
type = 'fragments'
61+
weight = 10

0 commit comments

Comments
 (0)