« get me outta code hell

css: .commentary-entry -> .content-entry - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/content/dependencies
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2026-01-31 17:20:01 -0400
committer(quasar) nebula <qznebula@protonmail.com>2026-01-31 17:20:01 -0400
commit014c18c9a8238c996708cf9d6e61ac246bfda996 (patch)
tree82c9555a73cf0dec7e2f837a938cdcc8f81b49c5 /src/content/dependencies
parent5d1bbf4f3932be0d45acfece1c9bd468e86af14f (diff)
css: .commentary-entry -> .content-entry
Diffstat (limited to 'src/content/dependencies')
-rw-r--r--src/content/dependencies/generateContentEntry.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/content/dependencies/generateContentEntry.js b/src/content/dependencies/generateContentEntry.js
index bebd690d..30d57f72 100644
--- a/src/content/dependencies/generateContentEntry.js
+++ b/src/content/dependencies/generateContentEntry.js
@@ -42,7 +42,7 @@ export default {
   generate: (data, relations, slots, {html, language}) =>
     language.encapsulate('misc.artistCommentary.entry', entryCapsule =>
       html.tags([
-        html.tag('p', {class: 'commentary-entry-heading'},
+        html.tag('p', {class: 'content-entry-heading'},
           slots.color &&
             relations.colorStyle.clone()
               .slot('color', slots.color),
@@ -51,12 +51,12 @@ export default {
             {class: 'dated'},
 
           language.encapsulate(entryCapsule, 'title', titleCapsule => [
-            html.tag('span', {class: 'commentary-entry-heading-text'},
+            html.tag('span', {class: 'content-entry-heading-text'},
               language.encapsulate(titleCapsule, workingCapsule => {
                 const workingOptions = {};
 
                 workingOptions.artists =
-                  html.tag('span', {class: 'commentary-entry-artists'},
+                  html.tag('span', {class: 'content-entry-artists'},
                     (relations.artistsContent
                       ? relations.artistsContent.slot('mode', 'inline')
                    : relations.artistLinks
@@ -64,7 +64,7 @@ export default {
                       : language.$(titleCapsule, 'noArtists')));
 
                 const accent =
-                  html.tag('span', {class: 'commentary-entry-accent'},
+                  html.tag('span', {class: 'content-entry-accent'},
                     {[html.onlyIfContent]: true},
 
                     language.encapsulate(titleCapsule, 'accent', accentCapsule =>
@@ -98,7 +98,7 @@ export default {
             relations.date,
           ])),
 
-        html.tag('blockquote', {class: 'commentary-entry-body'},
+        html.tag('blockquote', {class: 'content-entry-body'},
           slots.color &&
             relations.colorStyle.clone()
               .slot('color', slots.color),