summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-01-02 12:58:16 -0330
committerSam Anthony <sam@samanthony.xyz>2026-01-02 12:58:16 -0330
commit28079468bb4a82947c5759d6d556c1ee1e0a2a79 (patch)
treee221a2aefebedc077e1a7d8e4ed37d9224d9b3fa
parente522f0a02941a3dcabfeebd2842de61ba2d93901 (diff)
downloadsamanthony.xyz-28079468bb4a82947c5759d6d556c1ee1e0a2a79.zip
add funny excerpt from xc8 headers to home page
-rw-r--r--content/_index.html7
-rw-r--r--themes/aoidh/assets/aoidh.css14
2 files changed, 20 insertions, 1 deletions
diff --git a/content/_index.html b/content/_index.html
index 3ceba4f..684bbe1 100644
--- a/content/_index.html
+++ b/content/_index.html
@@ -4,6 +4,13 @@ date: 2025-12-23T17:12:55-03:30
draft: false
---
+<blockquote><code>
+/* _nop() has been deprecated; use __nop() */<br>
+#define _nop() __nop()
+</code>
+<cite>&mdash;excerpt from <a href="https://www.microchip.com/en-us/tools-resources/develop/mplab-xc-compilers/xc8"><code>pic.h</code></a></cite>
+</blockquote>
+
<h1>About</h1>
<table>
<thead>
diff --git a/themes/aoidh/assets/aoidh.css b/themes/aoidh/assets/aoidh.css
index b837158..4d81448 100644
--- a/themes/aoidh/assets/aoidh.css
+++ b/themes/aoidh/assets/aoidh.css
@@ -6,6 +6,8 @@
--dark-blue: #8888cc;
--light-gray: #eee;
--dark-gray: #888;
+
+ --parspace: .6em;
}
html {
@@ -77,7 +79,7 @@ p {
hyphens: auto;
text-justify: inter-word;
margin-top: 0;
- margin-bottom: .6em;
+ margin-bottom: var(--parspace);
}
a {
@@ -148,3 +150,13 @@ footer p {
hr {
border-top: .1rem solid #000;
}
+
+blockquote {
+ width: 80%;
+ margin: 0 auto var(--parspace) auto;
+}
+
+cite {
+ display: block;
+ text-align: right
+}