summaryrefslogtreecommitdiffstats
path: root/$mmm/plugins
diff options
context:
space:
mode:
authors-ol <s+removethis@s-ol.nu>2022-07-29 09:15:17 +0000
committers-ol <s+removethis@s-ol.nu>2022-07-29 09:15:17 +0000
commit56da0fb38de1762ec643ae2f22f024c464232eb9 (patch)
tree58dcec8f3caf25f6c4c3920897ff7e498ec0ec73 /$mmm/plugins
parent0x33.board: mention OSHWA, separate git/web repo links (diff)
downloadhw.s-ol.nu-56da0fb38de1762ec643ae2f22f024c464232eb9.tar.gz
hw.s-ol.nu-56da0fb38de1762ec643ae2f22f024c464232eb9.zip
move to hw.s-ol.nu
Diffstat (limited to '$mmm/plugins')
-rw-r--r--$mmm/plugins/layout/converts: text$lua -> table.lua4
-rw-r--r--$mmm/plugins/layout/converts: text$moonscript -> table.moon4
2 files changed, 4 insertions, 4 deletions
diff --git a/$mmm/plugins/layout/converts: text$lua -> table.lua b/$mmm/plugins/layout/converts: text$lua -> table.lua
index bed09c4..1e68994 100644
--- a/$mmm/plugins/layout/converts: text$lua -> table.lua
+++ b/$mmm/plugins/layout/converts: text$lua -> table.lua
@@ -62,7 +62,7 @@ gen_header = function(self)
h1({
navigate_to('', logo),
span({
- span('kb', {
+ span('hw', {
class = 'bold'
}),
'&#8203;',
@@ -119,7 +119,7 @@ get_header_tags = function(self)
if page_meta then
meta = meta .. page_meta
else
- meta = meta .. "\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n <meta property=\"og:title\" content=" .. tostring(e(title)) .. " />\n <meta property=\"og:type\" content=\"website\" />\n <meta property=\"og:url\" content=\"https://kb.s-ol.nu" .. tostring(self.path) .. "/\" />\n <meta property=\"og:site_name\" content=\"mmm\" />"
+ meta = meta .. "\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\n <meta property=\"og:title\" content=" .. tostring(e(title)) .. " />\n <meta property=\"og:type\" content=\"website\" />\n <meta property=\"og:url\" content=\"https://hw.s-ol.nu" .. tostring(self.path) .. "/\" />\n <meta property=\"og:site_name\" content=\"mmm\" />"
do
local desc = self:get('description: text/plain')
if desc then
diff --git a/$mmm/plugins/layout/converts: text$moonscript -> table.moon b/$mmm/plugins/layout/converts: text$moonscript -> table.moon
index 4e53532..5e45dd2 100644
--- a/$mmm/plugins/layout/converts: text$moonscript -> table.moon
+++ b/$mmm/plugins/layout/converts: text$moonscript -> table.moon
@@ -44,7 +44,7 @@ gen_header = =>
h1 {
navigate_to '', logo
span {
- span 'kb', class: 'bold'
+ span 'hw', class: 'bold'
'&#8203;'
'.s&#8209;ol.nu'
}
@@ -102,7 +102,7 @@ get_header_tags = =>
<meta property=\"og:title\" content=#{e title} />
<meta property=\"og:type\" content=\"website\" />
- <meta property=\"og:url\" content=\"https://kb.s-ol.nu#{@path}/\" />
+ <meta property=\"og:url\" content=\"https://hw.s-ol.nu#{@path}/\" />
<meta property=\"og:site_name\" content=\"mmm\" />"
if desc = @get 'description: text/plain'