Mara-Li
2024-01-29 b7152f743bc90411ffd5a9e59057a79be430751b
quartz/components/pages/TagContent.tsx
@@ -62,12 +62,14 @@
                  </a>
                </h2>
                {content && <p>{content}</p>}
                <div class="page-listing">
                <p>
                  {pluralize(pages.length, "item")} with this tag.{" "}
                  {pages.length > numPages && `Showing first ${numPages}.`}
                </p>
                <PageList limit={numPages} {...listProps} />
              </div>
              </div>
            )
          })}
        </div>
@@ -83,11 +85,13 @@
    return (
      <div class={classes}>
        <article>{content}</article>
        <div class="page-listing">
        <p>{pluralize(pages.length, "item")} with this tag.</p>
        <div>
          <PageList {...listProps} />
        </div>
      </div>
      </div>
    )
  }
}