Blog: improve formatting

- Display author metadata on landing page
- Remove unused Gateway Bulletins category
- Push category selector down so it doesn't get partly buried under the
  top nav & Apex banner
This commit is contained in:
mDuo13
2024-03-28 15:31:01 -07:00
parent c3194d9b08
commit 69f9a02ee1
3 changed files with 3 additions and 3 deletions

View File

@@ -19,7 +19,6 @@ const categories = {
amendments: "Amendments",
development: "Development",
developer_reflections: "Developer Reflections",
gateway_bulletins: "Gateway Bulletins",
features: "Features",
security: "Security",
};
@@ -213,6 +212,7 @@ export default function Index() {
<div>
<p id="card-date" className="mb-0">
{moment(translate(card.date)).format("MMM DD, YYYY")}
{ card.author ? ` by ${card.author}` : ""}
</p>
<h5 className="mb-2-sm h3-sm">
<a href={`/blog/${card.link}`}>

File diff suppressed because one or more lines are too long

View File

@@ -59,7 +59,7 @@
.category_sidebar {
position: sticky;
top: 10px;
top: $nav-height + $banner-height;
}
.category-checkbox {