Forum on Information Standards in Heritage website - a port of a Wordpress site to Gatsby 5
How the donated funds are distributed
Kivach works on the Obyte network, and therefore you can track all donations.
frontmatter: {status: {eq: "post"}}} ) { edges { node { id html frontmatter { title permalink date(formatString: "MMMM DD, YYYY") author categories } } } } } ``` ## Site pages and posts The site uses a simple template to generate pages and posts from markdown. The template is stored in **[src/templates/markdown-template.js](src/templates/markdown-template.js)** and is used by **[gatsby-node.js](gatsby-node.js)** to generate the pages. The query is simple: ```graphql query ($id: String!) { markdownRemark(id: {eq: $id}) { id html frontmatter { title permalink date(formatString: "MMMM DD, YYYY") author categories last_modified_at } } } ``` ## Images Images are served from the images folder and are optimised and transformed by gatsby image and graphql. There are two image components: 1. **[src/components/structure/logos.js](src/components/structure/logos.js)** - for logos 2. **[src/components/structure/image.js](src/components/structure/image.js)** -