Post Index Rows

About this block

Post Index RowsPRO

An image-free journal index: a sticky column with a serif heading that settles in word by word and a pill action, beside ruled rows that each carry a small-caps category, a serif title, the date and reading time, and an arrow that lifts on hover.

Blog70: Post Index Rows

A post index as a ruled table: a sticky column of heading and pill action beside rows that each line up a category, a serif title, a date with reading time, and an arrow that lifts on hover.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Upgrade Now

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/blog70?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/blog70?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/blog70.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

The installed file exports blog70Demo alongside the block: the exact props behind the preview above. Spread it to get a working post index in one line.

tsx
import { Blog70, blog70Demo } from "@/components/beste/block/blog70";

export default function Page() {
  return <Blog70 {...blog70Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Blog70 } from "@/components/beste/block/blog70";

export default function Page() {
  return (
    <Blog70
      eyebrow="Recent writing"
      heading="Short pieces, read in the time it takes the kettle to boil."
      button={{ label: "Everything we have written", href: "/journal", tone: "outline" }}
      posts={[
        { title: "The first ten minutes", category: "Practice", date: "August 2026", readTime: "4 min", href: "/journal/ten" },
        { title: "Rest, unearned", category: "Tools", date: "July 2026", readTime: "6 min", href: "/journal/rest" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
buttonActionButtonPill action under the heading
postsPost[][]Index rows, in the order given
classNamestringExtra classes for the outer <section>
ts
type Post = {
  title: string;
  category: string;
  date: string;
  readTime: string;
  href: string;
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • Each row is a 12-column grid rather than a flex row, so category, title and date land on the same vertical rules down the whole list however long any single title runs.
  • Below md the grid collapses to a single column and the arrow is dropped with hidden md:block, because a hover affordance is dead weight on a touch screen.
  • Date and reading time are joined with a middle dot in one span, so they wrap together and never split across two lines with the dot stranded.
  • The whole row is one Link, which means the entire strip is the hit target rather than just the title.
  • The arrow only moves under motion-safe:, and the title's colour shift is a plain transition, so the row still gives hover feedback when motion is reduced.
  • The left column is md:sticky md:top-28 so the heading and action stay with the reader down a long list, and reverts to normal flow below md where a sticky column would cover the rows.
  • Rows enter with a small 0.08s stagger, which is deliberately tighter than the card blocks in the set: a list of five reads as one object, and a longer stagger would make the last row arrive noticeably late.

More Blog blocks

View all Blog
PRO

blog58

Ruled Writing Index

Image-free article index where every entry is one ruled row carrying the date, the category, the title and the reading time with a corner arrow, stacking to a readable block on mobile.

PRO

blog68

Slow Journal

A journal listing: a serif heading settling in word by word beside a pill action, then three staggered article cards whose photographs drift inside their frames, each with a small-caps category and date, a serif title, an excerpt and a read link.

FREE

blog61

Filterable Archive Index

A dense blog archive whose subject pills are derived from the posts themselves and carry live counts, filtering a two-column list of hairline rows stamped with a date and a reading time.

FREE

blog57

Journal Lead And Index

Editorial journal preview pairing one lead entry with a wide image, category, title, excerpt and date against a ruled index of three shorter entries, headed by an eyebrow, a display heading and an outline pill CTA.

PRO

blog69

Long Read and Shorts

A journal section with one featured essay, its wide photograph drifting inside the frame, small-caps category and date, a large serif title and an excerpt, beside a ruled list of recent shorter pieces, under a serif heading that settles in word by word and a pill action.

PRO

blog43

Editorial Article Grid

A blog listing with an eyebrow over a hairline rule, a two-column heading, and three linked article cards with a hover-zoom image, a category label, a title, an excerpt, and byline.