Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

Gatsby Theme UltronEle

GTU, one of components of UltronEle product, is a UltronEle Gatsby Theme which can be installed as package in your own Gatsby site.

See the live demo, more info about this product is here

How to use GTU

Two options:

  • start from a UltronEle Starter
  • integrated to your existing gatsby site while you’re familiar to Gatsby development

GTU Installation to your existing gatsby site

To use this theme in your Gatsby sites, follow these instructions:

  1. Install the theme

    npm install --save gatsby-theme-ultronele
  2. Add the theme to your gatsby-config.js:

    module.exports = {
      plugins: [
        'gatsby-theme-ultronele'
      ]
    }
  3. Start your site

    gatsby develop

Checklist to integrate GTU

  • create content folder to hold your .md files
  • define contentPath property in your site gatsby-config.js under plugins section, if you dont use content folder to hold your .md files
  • create category folder to hold course category and tutorials content

Content structure by convention

├── content
  ├── assets
    ├── imagefoldera
    ├── imagefolderb
  ├── category
    ├── coursetypea
      ├── tutoriala
        ├── 1-section.md
        ├── 2-section.md
        ├── 3-section.md
        ├── x-section.md
        ├── test.md    # this file hold tutorial quiz questions
      ├── tutorialb
      ├── tutorialc
    ├── coursetypeb
    ├── coursetypec
  ├── pagea.md    # first level navigation page of your site
  ├── pageb.md
  ├── pagec.md
  ├── paged.md
© 2023 Gatsby, Inc.