
Security News
Security Community Slams MIT-linked Report Claiming AI Powers 80% of Ransomware
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.
gatsby-theme-golden-condor
Advanced tools
A gatsby theme with **MDX** support, **theming** & **dark mode** via **[theme-ui](https://theme-ui.com)**, unlimited **collections** (custom post types), configurable **layouts**, built in **SEO**, component shadowing and more.
A gatsby theme with MDX support, theming & dark mode via theme-ui, unlimited collections (custom post types), configurable layouts, built in SEO, component shadowing and more.
First init a new gatsby project:
npm init gatsby
cd into the directory of your new project
cd my-gatsby-site
Install the theme
npm i gatsby-theme-golden-condor
In your project folder
npm i gatsby-theme-golden-condor
Edit your gatsby-config.js
We need to add the plugin gatsby-theme-golden-condor, plus there are a few required siteMetadata options that the theme uses for SEO and the like.
module.exports = {
  siteMetadata: {
    siteUrl: "https://www.yourdomain.tld",
    title: "Your Title",
    author: "Your Name",
    description: "site description",
    image: "static-image.png",
    social: [
      {
        name: "...",
        url: "...",
      },
    ],
  },
  plugins: [
    {
      resolve: `gatsby-theme-golden-condor`,
      options: {},
    },
  ],
};
For more information on these options check out Theme Options and Site Metadata
index.jsDelete the src/pages/index.js file that was created by gatsby init.
Run the develop script.
This will create the default posts, pages and navigation.yaml file in the content folder.
npm run develop
The content for the home page is located at content/pages/index.mdx. For more info, check out Frontmatter
The header and footer menus are configurable in content/pages/navigation.yaml. For more info, check out Navigation
FAQs
A gatsby theme with **MDX** support, **theming** & **dark mode** via **[theme-ui](https://theme-ui.com)**, unlimited **collections** (custom post types), configurable **layouts**, built in **SEO**, component shadowing and more.
The npm package gatsby-theme-golden-condor receives a total of 90 weekly downloads. As such, gatsby-theme-golden-condor popularity was classified as not popular.
We found that gatsby-theme-golden-condor demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.