Skip to content

Open source themes to bootstrap websites developed on Dega CMS. The themes are developed using Gatbsy.

License

Notifications You must be signed in to change notification settings

chakradhar32/dega-themes

 
 

Repository files navigation

Dega Themes

The repository contains open sourced themes developed by Factly to generate modern websites using Dega CMS as a data source. Themes are developed using GatsbyJS and are free of cost to use.

We at Factly are making developing quality websites easier with Dega Themes and Dega CMS.

To run example site

yarn workspace [sitename] start

ex -

yarn workspace factly-english start

To build new site

mkdir project-name && cd project-name

Add package.json file

yarn init -y -p

create a file in root directory gatsby-config.js and add below code

const siteMetadata = {
    title: "Site title"
}

module.exports = {
  plugins: [
    {
      resolve: '@factly/gatsby-theme-factly',
      options: {
        client: 'factly',
        metaData: siteMetadata
      }
    }
  ]
};

Install packages

yarn add gatsby react '@factly/gatsby-theme-factlyreact-dom

Run site

gatsby develop

Build site

gatsby build

About

Open source themes to bootstrap websites developed on Dega CMS. The themes are developed using Gatbsy.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 93.1%
  • CSS 5.9%
  • SCSS 1.0%