The best way to deal with this problem is to tell the browser not to cache our HTML in the first place. We can achieve this by adding the following meta tag to index.html
, and any other HTML files we don’t want cached.
A quick google search revealed that the best way to invalidate browser cache is by changing the url of the file you’re telling it to load. So we would change this:
-and the browser would recognize this as new file and load it from the server. Problem solved! Of course, you would have to change the file name too…
-… and this would get tedious very quickly. Furthermore, it’s going to make a mess of your version history if, as far as Git is concerned, you’re deleting the CSS file and writing a new one with every deployment. Surely there’s a better way?
+What we need is for the browser to recognize our CSS as a new file and load it anew from the server. We could change the file name whenever we want to bust the cache, but this would get tedious very quickly. What’s more, as far as Git is concerned, we’d be deleting the CSS file and writing a new one with every deployment. Surely there’s a better way?
Of course there is. Look at this:
< link rel = "stylesheet" href = "css/defaults.css?v=2" />
diff --git a/public/posts/index.html b/public/posts/index.html
index 9c21b06..31e9886 100644
--- a/public/posts/index.html
+++ b/public/posts/index.html
@@ -4,7 +4,7 @@
- Posts | My New Hugo Site
+ Posts | CODING WITH ANDRZEJ
@@ -16,7 +16,7 @@
- My New Hugo Site
+ CODING WITH ANDRZEJ
@@ -46,7 +46,7 @@
The experienced computer touchers amongst you will be saying “this is obviously a cache problem”, and you’re right, it is obviously a cache problem. Pressing CTR + SHIFT + R
(which forces Firefox to clear the cache and do a full reload) proved this thesis, and solved the problem handily for me, on my machine. But what about other people’s machines?
- It’s always permissions
+ It’s always permissions
Configuring Apache really isn’t rocket science. There are a wealth of great tutorials online, the documentation is very well documented, and the defaults work more or less out of the box. But it’s one of those jobs that I do just infrequently enough that I always forget things in the interim, and end up making the same old mistakes.
And it almost always has to do with permissions.
diff --git a/public/posts/index.xml b/public/posts/index.xml
index 7941845..6a3d70c 100644
--- a/public/posts/index.xml
+++ b/public/posts/index.xml
@@ -1,9 +1,9 @@
- Posts on My New Hugo Site
+ Posts on CODING WITH ANDRZEJ
http://localhost:1313/posts/
- Recent content in Posts on My New Hugo Site
+ Recent content in Posts on CODING WITH ANDRZEJ
Hugo
en-us
Wed, 13 Nov 2024 14:24:21 +0100
@@ -20,7 +20,7 @@
http://localhost:1313/posts/permissions-strike-again/
Wed, 13 Nov 2024 11:53:13 +0100
http://localhost:1313/posts/permissions-strike-again/
- <h1 id="its-always-permissions">It’s always permissions</h1>
<p>Configuring Apache really isn’t rocket science. There are a wealth of great tutorials online, the documentation is very well documented, and the defaults work more or less out of the box. But it’s one of those jobs that I do just infrequently enough that I always forget things in the interim, and end up making the same old mistakes.</p>
<p><strong>And it almost always has to do with permissions.</strong></p>
+ <h2 id="its-always-permissions">It’s always permissions</h2>
<p>Configuring Apache really isn’t rocket science. There are a wealth of great tutorials online, the documentation is very well documented, and the defaults work more or less out of the box. But it’s one of those jobs that I do just infrequently enough that I always forget things in the interim, and end up making the same old mistakes.</p>
<p><strong>And it almost always has to do with permissions.</strong></p>
-
Post 3
diff --git a/public/posts/permissions-strike-again/index.html b/public/posts/permissions-strike-again/index.html
index 84eaa7c..b55cab6 100644
--- a/public/posts/permissions-strike-again/index.html
+++ b/public/posts/permissions-strike-again/index.html
@@ -4,7 +4,7 @@
- Permissions Strike Again | My New Hugo Site
+ Permissions Strike Again | CODING WITH ANDRZEJ
@@ -16,7 +16,7 @@
- My New Hugo Site
+ CODING WITH ANDRZEJ
@@ -42,7 +42,7 @@
November 13, 2024
- It’s always permissions
+ It’s always permissions
Configuring Apache really isn’t rocket science. There are a wealth of great tutorials online, the documentation is very well documented, and the defaults work more or less out of the box. But it’s one of those jobs that I do just infrequently enough that I always forget things in the interim, and end up making the same old mistakes.
And it almost always has to do with permissions.
So, I’m writing this post both as a means of christening this devlog (Hi! I’m Andrzej! Hire me! ) and also as a reminder to myself that the home folder is not executable by default.
diff --git a/public/posts/post-1/index.html b/public/posts/post-1/index.html
index 122362a..b90ec5b 100644
--- a/public/posts/post-1/index.html
+++ b/public/posts/post-1/index.html
@@ -4,7 +4,7 @@
- Post 1 | My New Hugo Site
+ Post 1 | CODING WITH ANDRZEJ
@@ -16,7 +16,7 @@
- My New Hugo Site
+ CODING WITH ANDRZEJ
diff --git a/public/posts/post-2/index.html b/public/posts/post-2/index.html
index bca05f9..1ba60f0 100644
--- a/public/posts/post-2/index.html
+++ b/public/posts/post-2/index.html
@@ -4,7 +4,7 @@
- Post 2 | My New Hugo Site
+ Post 2 | CODING WITH ANDRZEJ
@@ -16,7 +16,7 @@
- My New Hugo Site
+ CODING WITH ANDRZEJ
diff --git a/public/posts/post-3/index.html b/public/posts/post-3/index.html
index 6e2cb31..951af52 100644
--- a/public/posts/post-3/index.html
+++ b/public/posts/post-3/index.html
@@ -4,7 +4,7 @@
- Post 3 | My New Hugo Site
+ Post 3 | CODING WITH ANDRZEJ
@@ -16,7 +16,7 @@
- My New Hugo Site
+ CODING WITH ANDRZEJ
diff --git a/public/tags/blue/index.html b/public/tags/blue/index.html
index da30466..c2b5cf3 100644
--- a/public/tags/blue/index.html
+++ b/public/tags/blue/index.html
@@ -4,7 +4,7 @@
- Blue | My New Hugo Site
+ Blue | CODING WITH ANDRZEJ
@@ -16,7 +16,7 @@
- My New Hugo Site
+ CODING WITH ANDRZEJ
diff --git a/public/tags/blue/index.xml b/public/tags/blue/index.xml
index aee0e76..9c33ae5 100644
--- a/public/tags/blue/index.xml
+++ b/public/tags/blue/index.xml
@@ -1,9 +1,9 @@
- Blue on My New Hugo Site
+ Blue on CODING WITH ANDRZEJ
http://localhost:1313/tags/blue/
- Recent content in Blue on My New Hugo Site
+ Recent content in Blue on CODING WITH ANDRZEJ
Hugo
en-us
Wed, 15 Mar 2023 11:00:00 -0700
diff --git a/public/tags/green/index.html b/public/tags/green/index.html
index b0c994c..f112d62 100644
--- a/public/tags/green/index.html
+++ b/public/tags/green/index.html
@@ -4,7 +4,7 @@
- Green | My New Hugo Site
+ Green | CODING WITH ANDRZEJ
@@ -16,7 +16,7 @@
- My New Hugo Site
+ CODING WITH ANDRZEJ
diff --git a/public/tags/green/index.xml b/public/tags/green/index.xml
index 4d5f10b..073b27d 100644
--- a/public/tags/green/index.xml
+++ b/public/tags/green/index.xml
@@ -1,9 +1,9 @@
- Green on My New Hugo Site
+ Green on CODING WITH ANDRZEJ
http://localhost:1313/tags/green/
- Recent content in Green on My New Hugo Site
+ Recent content in Green on CODING WITH ANDRZEJ
Hugo
en-us
Wed, 15 Mar 2023 11:00:00 -0700
diff --git a/public/tags/index.html b/public/tags/index.html
index e698ba8..e0d3b90 100644
--- a/public/tags/index.html
+++ b/public/tags/index.html
@@ -4,7 +4,7 @@
- Tags | My New Hugo Site
+ Tags | CODING WITH ANDRZEJ
@@ -16,7 +16,7 @@
- My New Hugo Site
+ CODING WITH ANDRZEJ
diff --git a/public/tags/index.xml b/public/tags/index.xml
index 3058c6a..6ab2b3b 100644
--- a/public/tags/index.xml
+++ b/public/tags/index.xml
@@ -1,9 +1,9 @@
- Tags on My New Hugo Site
+ Tags on CODING WITH ANDRZEJ
http://localhost:1313/tags/
- Recent content in Tags on My New Hugo Site
+ Recent content in Tags on CODING WITH ANDRZEJ
Hugo
en-us
Wed, 15 Mar 2023 11:00:00 -0700
diff --git a/public/tags/red/index.html b/public/tags/red/index.html
index f5156fe..6641312 100644
--- a/public/tags/red/index.html
+++ b/public/tags/red/index.html
@@ -4,7 +4,7 @@
- Red | My New Hugo Site
+ Red | CODING WITH ANDRZEJ
@@ -16,7 +16,7 @@
- My New Hugo Site
+ CODING WITH ANDRZEJ
diff --git a/public/tags/red/index.xml b/public/tags/red/index.xml
index 91982eb..c54ab81 100644
--- a/public/tags/red/index.xml
+++ b/public/tags/red/index.xml
@@ -1,9 +1,9 @@
- Red on My New Hugo Site
+ Red on CODING WITH ANDRZEJ
http://localhost:1313/tags/red/
- Recent content in Red on My New Hugo Site
+ Recent content in Red on CODING WITH ANDRZEJ
Hugo
en-us
Wed, 15 Mar 2023 11:00:00 -0700
diff --git a/themes/cuqui/assets/css/main.css b/themes/cuqui/assets/css/main.css
index c72d4f5..c5de418 100644
--- a/themes/cuqui/assets/css/main.css
+++ b/themes/cuqui/assets/css/main.css
@@ -64,6 +64,14 @@ body {
max-width: 768px;
}
+b {
+ color: var(--rp-love);
+}
+
+i {
+ color: var(--rp-muted)
+}
+
header {
border-bottom: 1px solid #222;
margin-bottom: 1rem;
@@ -86,14 +94,31 @@ a:visited {
h1 {
color: var(--rp-gold);
+ /* background-color: var(--rp-overlay); */
+ background-image: linear-gradient(to bottom, var(--rp-overlay), var(--rp-overlay), var(--rp-base));
+ border-radius: 1rem 1rem 0 0;
+ padding: 1rem;
}
h2 {
- color: var(--rp-iris);
+ color: var(--rp-gold);
}
-code pre {
- background-color: var(--rp-surface);
- padding: 0.6em;
+code {
+ background: var(--rp-surface);
+ padding: 0.3em;
border-radius: 1em;
+ font-size: 1.2em;
+
+ span {
+ background: var(--rp-surface);
+ }
+}
+
+
+
+.highlight {
+ padding: 1rem;
+ background-color: var(--rp-surface);
+ border-radius: 1rem;
}
diff --git a/themes/cuqui/assets/css/syntax.css b/themes/cuqui/assets/css/syntax.css
index c8c1526..f05d05e 100644
--- a/themes/cuqui/assets/css/syntax.css
+++ b/themes/cuqui/assets/css/syntax.css
@@ -1,86 +1,446 @@
-/* Background */ .bg { color:#e0def4;background-color:#232136; }
-/* PreWrapper */ .chroma { color:#e0def4;background-color:#232136; }
-/* Other */ .chroma .x { }
-/* Error */ .chroma .err { color:#eb6f92 }
-/* CodeLine */ .chroma .cl { }
-/* LineLink */ .chroma .lnlinks { outline:none;text-decoration:none;color:inherit }
-/* LineTableTD */ .chroma .lntd { vertical-align:top;padding:0;margin:0;border:0; }
-/* LineTable */ .chroma .lntable { border-spacing:0;padding:0;margin:0;border:0; }
-/* LineHighlight */ .chroma .hl { background-color:#39374a }
-/* 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 }
-/* 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 }
-/* Line */ .chroma .line { display:flex; }
-/* Keyword */ .chroma .k { color:#3e8fb0 }
-/* KeywordConstant */ .chroma .kc { color:#3e8fb0 }
-/* KeywordDeclaration */ .chroma .kd { color:#3e8fb0 }
-/* KeywordNamespace */ .chroma .kn { color:#c4a7e7 }
-/* KeywordPseudo */ .chroma .kp { color:#3e8fb0 }
-/* KeywordReserved */ .chroma .kr { color:#3e8fb0 }
-/* KeywordType */ .chroma .kt { color:#3e8fb0 }
-/* Name */ .chroma .n { color:#ea9a97 }
-/* NameAttribute */ .chroma .na { color:#ea9a97 }
-/* NameBuiltin */ .chroma .nb { color:#ea9a97 }
-/* NameBuiltinPseudo */ .chroma .bp { color:#ea9a97 }
-/* NameClass */ .chroma .nc { color:#9ccfd8 }
-/* NameConstant */ .chroma .no { color:#f6c177 }
-/* NameDecorator */ .chroma .nd { color:#908caa }
-/* NameEntity */ .chroma .ni { color:#ea9a97 }
-/* NameException */ .chroma .ne { color:#3e8fb0 }
-/* NameFunction */ .chroma .nf { color:#ea9a97 }
-/* NameFunctionMagic */ .chroma .fm { color:#ea9a97 }
-/* NameLabel */ .chroma .nl { color:#ea9a97 }
-/* NameNamespace */ .chroma .nn { color:#ea9a97 }
-/* NameOther */ .chroma .nx { }
-/* NameProperty */ .chroma .py { color:#ea9a97 }
-/* NameTag */ .chroma .nt { color:#ea9a97 }
-/* NameVariable */ .chroma .nv { color:#ea9a97 }
-/* NameVariableClass */ .chroma .vc { color:#ea9a97 }
-/* NameVariableGlobal */ .chroma .vg { color:#ea9a97 }
-/* NameVariableInstance */ .chroma .vi { color:#ea9a97 }
-/* NameVariableMagic */ .chroma .vm { color:#ea9a97 }
-/* Literal */ .chroma .l { color:#f6c177 }
-/* LiteralDate */ .chroma .ld { color:#f6c177 }
-/* LiteralString */ .chroma .s { color:#f6c177 }
-/* LiteralStringAffix */ .chroma .sa { color:#f6c177 }
-/* LiteralStringBacktick */ .chroma .sb { color:#f6c177 }
-/* LiteralStringChar */ .chroma .sc { color:#f6c177 }
-/* LiteralStringDelimiter */ .chroma .dl { color:#f6c177 }
-/* LiteralStringDoc */ .chroma .sd { color:#f6c177 }
-/* LiteralStringDouble */ .chroma .s2 { color:#f6c177 }
-/* LiteralStringEscape */ .chroma .se { color:#3e8fb0 }
-/* LiteralStringHeredoc */ .chroma .sh { color:#f6c177 }
-/* LiteralStringInterpol */ .chroma .si { color:#f6c177 }
-/* LiteralStringOther */ .chroma .sx { color:#f6c177 }
-/* LiteralStringRegex */ .chroma .sr { color:#f6c177 }
-/* LiteralStringSingle */ .chroma .s1 { color:#f6c177 }
-/* LiteralStringSymbol */ .chroma .ss { color:#f6c177 }
-/* LiteralNumber */ .chroma .m { color:#f6c177 }
-/* LiteralNumberBin */ .chroma .mb { color:#f6c177 }
-/* LiteralNumberFloat */ .chroma .mf { color:#f6c177 }
-/* LiteralNumberHex */ .chroma .mh { color:#f6c177 }
-/* LiteralNumberInteger */ .chroma .mi { color:#f6c177 }
-/* LiteralNumberIntegerLong */ .chroma .il { color:#f6c177 }
-/* LiteralNumberOct */ .chroma .mo { color:#f6c177 }
-/* Operator */ .chroma .o { color:#908caa }
-/* OperatorWord */ .chroma .ow { color:#908caa }
-/* Punctuation */ .chroma .p { color:#908caa }
-/* Comment */ .chroma .c { color:#6e6a86 }
-/* CommentHashbang */ .chroma .ch { color:#6e6a86 }
-/* CommentMultiline */ .chroma .cm { color:#6e6a86 }
-/* CommentSingle */ .chroma .c1 { color:#6e6a86 }
-/* CommentSpecial */ .chroma .cs { color:#6e6a86 }
-/* CommentPreproc */ .chroma .cp { color:#6e6a86 }
-/* CommentPreprocFile */ .chroma .cpf { color:#6e6a86 }
-/* Generic */ .chroma .g { }
-/* GenericDeleted */ .chroma .gd { color:#eb6f92 }
-/* GenericEmph */ .chroma .ge { font-style:italic }
-/* GenericError */ .chroma .gr { }
-/* GenericHeading */ .chroma .gh { }
-/* GenericInserted */ .chroma .gi { color:#9ccfd8 }
-/* GenericOutput */ .chroma .go { }
-/* GenericPrompt */ .chroma .gp { }
-/* GenericStrong */ .chroma .gs { font-weight:bold }
-/* GenericSubheading */ .chroma .gu { color:#c4a7e7 }
-/* GenericTraceback */ .chroma .gt { }
-/* GenericUnderline */ .chroma .gl { }
-/* TextWhitespace */ .chroma .w { }
+:root {
+ /* Rosé Pine Dawn */
+ --rp-base: hsl(32deg, 57%, 95%);
+ --rp-surface: hsl(35deg, 100%, 98%);
+ --rp-overlay: hsl(33deg, 43%, 91%);
+}
+
+@media (prefers-color-scheme: dark) {
+ :root {
+ /* Rosé Pine */
+ --rp-base: hsl(249deg, 22%, 12%);
+ --rp-surface: hsl(247deg, 23%, 15%);
+ --rp-overlay: hsl(248deg, 25%, 18%);
+ }
+}
+
+
+
+
+/* Background */
+.bg {
+ color: #e0def4;
+ background-color: var(--rp-surface);
+}
+
+/* PreWrapper */
+.chroma {
+ color: #e0def4;
+ background-color: var(--rp-surface);
+}
+
+/* Other */
+.chroma .x {}
+
+/* Error */
+.chroma .err {
+ color: #eb6f92
+}
+
+/* CodeLine */
+.chroma .cl {}
+
+/* LineLink */
+.chroma .lnlinks {
+ outline: none;
+ text-decoration: none;
+ color: inherit
+}
+
+/* LineTableTD */
+.chroma .lntd {
+ vertical-align: top;
+ padding: 0;
+ margin: 0;
+ border: 0;
+}
+
+/* LineTable */
+.chroma .lntable {
+ border-spacing: 0;
+ padding: 0;
+ margin: 0;
+ border: 0;
+}
+
+/* LineHighlight */
+.chroma .hl {
+ background-color: #39374a
+}
+
+/* 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
+}
+
+/* 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
+}
+
+/* Line */
+.chroma .line {
+ display: flex;
+}
+
+/* Keyword */
+.chroma .k {
+ color: #3e8fb0
+}
+
+/* KeywordConstant */
+.chroma .kc {
+ color: #3e8fb0
+}
+
+/* KeywordDeclaration */
+.chroma .kd {
+ color: #3e8fb0
+}
+
+/* KeywordNamespace */
+.chroma .kn {
+ color: #c4a7e7
+}
+
+/* KeywordPseudo */
+.chroma .kp {
+ color: #3e8fb0
+}
+
+/* KeywordReserved */
+.chroma .kr {
+ color: #3e8fb0
+}
+
+/* KeywordType */
+.chroma .kt {
+ color: #3e8fb0
+}
+
+/* Name */
+.chroma .n {
+ color: #ea9a97
+}
+
+/* NameAttribute */
+.chroma .na {
+ color: #ea9a97
+}
+
+/* NameBuiltin */
+.chroma .nb {
+ color: #ea9a97
+}
+
+/* NameBuiltinPseudo */
+.chroma .bp {
+ color: #ea9a97
+}
+
+/* NameClass */
+.chroma .nc {
+ color: #9ccfd8
+}
+
+/* NameConstant */
+.chroma .no {
+ color: #f6c177
+}
+
+/* NameDecorator */
+.chroma .nd {
+ color: #908caa
+}
+
+/* NameEntity */
+.chroma .ni {
+ color: #ea9a97
+}
+
+/* NameException */
+.chroma .ne {
+ color: #3e8fb0
+}
+
+/* NameFunction */
+.chroma .nf {
+ color: #ea9a97
+}
+
+/* NameFunctionMagic */
+.chroma .fm {
+ color: #ea9a97
+}
+
+/* NameLabel */
+.chroma .nl {
+ color: #ea9a97
+}
+
+/* NameNamespace */
+.chroma .nn {
+ color: #ea9a97
+}
+
+/* NameOther */
+.chroma .nx {}
+
+/* NameProperty */
+.chroma .py {
+ color: #ea9a97
+}
+
+/* NameTag */
+.chroma .nt {
+ color: #ea9a97
+}
+
+/* NameVariable */
+.chroma .nv {
+ color: #ea9a97
+}
+
+/* NameVariableClass */
+.chroma .vc {
+ color: #ea9a97
+}
+
+/* NameVariableGlobal */
+.chroma .vg {
+ color: #ea9a97
+}
+
+/* NameVariableInstance */
+.chroma .vi {
+ color: #ea9a97
+}
+
+/* NameVariableMagic */
+.chroma .vm {
+ color: #ea9a97
+}
+
+/* Literal */
+.chroma .l {
+ color: #f6c177
+}
+
+/* LiteralDate */
+.chroma .ld {
+ color: #f6c177
+}
+
+/* LiteralString */
+.chroma .s {
+ color: #f6c177
+}
+
+/* LiteralStringAffix */
+.chroma .sa {
+ color: #f6c177
+}
+
+/* LiteralStringBacktick */
+.chroma .sb {
+ color: #f6c177
+}
+
+/* LiteralStringChar */
+.chroma .sc {
+ color: #f6c177
+}
+
+/* LiteralStringDelimiter */
+.chroma .dl {
+ color: #f6c177
+}
+
+/* LiteralStringDoc */
+.chroma .sd {
+ color: #f6c177
+}
+
+/* LiteralStringDouble */
+.chroma .s2 {
+ color: #f6c177
+}
+
+/* LiteralStringEscape */
+.chroma .se {
+ color: #3e8fb0
+}
+
+/* LiteralStringHeredoc */
+.chroma .sh {
+ color: #f6c177
+}
+
+/* LiteralStringInterpol */
+.chroma .si {
+ color: #f6c177
+}
+
+/* LiteralStringOther */
+.chroma .sx {
+ color: #f6c177
+}
+
+/* LiteralStringRegex */
+.chroma .sr {
+ color: #f6c177
+}
+
+/* LiteralStringSingle */
+.chroma .s1 {
+ color: #f6c177
+}
+
+/* LiteralStringSymbol */
+.chroma .ss {
+ color: #f6c177
+}
+
+/* LiteralNumber */
+.chroma .m {
+ color: #f6c177
+}
+
+/* LiteralNumberBin */
+.chroma .mb {
+ color: #f6c177
+}
+
+/* LiteralNumberFloat */
+.chroma .mf {
+ color: #f6c177
+}
+
+/* LiteralNumberHex */
+.chroma .mh {
+ color: #f6c177
+}
+
+/* LiteralNumberInteger */
+.chroma .mi {
+ color: #f6c177
+}
+
+/* LiteralNumberIntegerLong */
+.chroma .il {
+ color: #f6c177
+}
+
+/* LiteralNumberOct */
+.chroma .mo {
+ color: #f6c177
+}
+
+/* Operator */
+.chroma .o {
+ color: #908caa
+}
+
+/* OperatorWord */
+.chroma .ow {
+ color: #908caa
+}
+
+/* Punctuation */
+.chroma .p {
+ color: #908caa
+}
+
+/* Comment */
+.chroma .c {
+ color: #6e6a86
+}
+
+/* CommentHashbang */
+.chroma .ch {
+ color: #6e6a86
+}
+
+/* CommentMultiline */
+.chroma .cm {
+ color: #6e6a86
+}
+
+/* CommentSingle */
+.chroma .c1 {
+ color: #6e6a86
+}
+
+/* CommentSpecial */
+.chroma .cs {
+ color: #6e6a86
+}
+
+/* CommentPreproc */
+.chroma .cp {
+ color: #6e6a86
+}
+
+/* CommentPreprocFile */
+.chroma .cpf {
+ color: #6e6a86
+}
+
+/* Generic */
+.chroma .g {}
+
+/* GenericDeleted */
+.chroma .gd {
+ color: #eb6f92
+}
+
+/* GenericEmph */
+.chroma .ge {
+ font-style: italic
+}
+
+/* GenericError */
+.chroma .gr {}
+
+/* GenericHeading */
+.chroma .gh {}
+
+/* GenericInserted */
+.chroma .gi {
+ color: #9ccfd8
+}
+
+/* GenericOutput */
+.chroma .go {}
+
+/* GenericPrompt */
+.chroma .gp {}
+
+/* GenericStrong */
+.chroma .gs {
+ font-weight: bold
+}
+
+/* GenericSubheading */
+.chroma .gu {
+ color: #c4a7e7
+}
+
+/* GenericTraceback */
+.chroma .gt {}
+
+/* GenericUnderline */
+.chroma .gl {}
+
+/* TextWhitespace */
+.chroma .w {}
diff --git a/themes/cuqui/content/_index.md b/themes/cuqui/content/_index.md
index 652623b..873df35 100644
--- a/themes/cuqui/content/_index.md
+++ b/themes/cuqui/content/_index.md
@@ -4,6 +4,3 @@ date = 2023-01-01T08:00:00-07:00
draft = false
+++
-Laborum voluptate pariatur ex culpa magna nostrud est incididunt fugiat
-pariatur do dolor ipsum enim. Consequat tempor do dolor eu. Non id id anim anim
-excepteur excepteur pariatur nostrud qui irure ullamco.