Code Monkey home page Code Monkey logo

Comments (5)

sahillangoo avatar sahillangoo commented on May 23, 2024 1

My Bad i was troubleshooting deployment had to reinitiate the repo
Yeah I have the content collection and the above snippet works as already mention in the recipe but i want it in the layout!
So used the other one but now i have add it as a prop and it works like a charm!
Thanks for helping!

<BlogPost {...data} timetoread={remarkPluginFrontmatter.minutesRead}>
	<Content />
</BlogPost>

from docs.

TheOtterlord avatar TheOtterlord commented on May 23, 2024 1

Glad we could help!

from docs.

VoxelMC avatar VoxelMC commented on May 23, 2024

If you are able, can you see if this works?

---
const { frontmatter } = Astro.props;
---

<html>
  <head>...</head>
  <body>
    <p>{frontmatter.minutesRead}</p>
    <slot />
  </body>
</html>

There is probably no reason for this to work any differently, but maybe we can start here?
If it still doesn't work, I'll see if I can reproduce this tomorrow and work from there :)

from docs.

sahillangoo avatar sahillangoo commented on May 23, 2024

Not working , Link to repo:
image

from docs.

TheOtterlord avatar TheOtterlord commented on May 23, 2024

Hey @sahillangoo! Looks like your repo is empty, but looking at the screenshot I see a CollectionEntry type. The frontmatter Astro prop only exists if you're using markdown templating instead of content collections. If your markdown is coming from content collections (like it looks to be here), you can instead use the example from the previous snippet in the recipe:

---
import { CollectionEntry, getCollection } from 'astro:content';

export async function getStaticPaths() {
  const blog = await getCollection('blog');
  return blog.map(entry => ({
    params: { slug: entry.slug },
    props: { entry },
  }));
}

const { entry } = Astro.props;
const { Content, remarkPluginFrontmatter } = await entry.render();
---

<html>
  <head>...</head>
  <body>
    ...
    <p>{remarkPluginFrontmatter.minutesRead}</p>
    ...
  </body>
</html>

Let me know if this helps!

from docs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.