chore: updated verifying.mdx c984c8a3
Steve · 2026-05-24 11:17 1 file(s) · +13 −1
docs/docs/pages/verifying.mdx +13 −1
21 21
The content of that link tag needs to be the AT URI for the record we just published on your PDS, and an optional publication URI for enhanced links in Bluesky posts if enabled.
22 22
There are two ways you can handle these:
23 23
24 -
- `sequoia inject` (recommended) - By running this command after publishing, and after building the site with your SSG, Sequoia will inject the link tags into your finished HTML.
24 +
- `sequoia inject` - By running this command after publishing, and after building the site with your SSG, Sequoia will inject the link tags into your finished HTML.
25 25
  This way you don't have to manually edit it or mess with an SSG config to set it up.
26 26
  Just deploy the build folder after you have run `sequoia inject`!
27 27
31 31
  This approach gives you full control over the HTML files but will take a bit more skill.
32 32
33 33
  :::code-group
34 +
35 +
  ```html [Astro]
36 +
  ---
37 +
  import type { SiteMeta } from "@/data/siteMeta";
38 +
  import siteConfig from "@/site-config";
39 +
  type Props = SiteMeta;
40 +
  const { title, description, ogImage, articleDate, atUri } = Astro.props;
41 +
  ---
42 +
43 +
  <!-- Standard.site document verification -->
44 +
  {atUri && <link rel="site.standard.document" href={atUri} />}
45 +
  ```
34 46
35 47
  ```html [Hugo]
36 48
  <!-- layouts/_partials/head.html -->