GitXplorerGitXplorer
e

bright-cms

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
d9b563f34c0b324a51c8ba8df42f03811b1a22ce

Merge pull request #17 from hdlopes/master

ccalavera committed 8 years ago
Unverified
554674fcff576428b71fe039ce6a62ee9d409b9e

Fix values link on homepage

hhdlopes committed 8 years ago
Unverified
eeff5ab41103621eec51994909fab481cee075eb

Merge pull request #12 from TomDeS/patch-1

eerquhart committed 8 years ago
Unverified
1b86ccf0f7a80276d3a5e47ccf722926f074c277

Merge pull request #7 from okabrionz/master

eerquhart committed 8 years ago
Unverified
9f94535e5a9e5c5f5629b2e9287872cb186db710

Merge pull request #10 from erquhart/cms-styles

ccalavera committed 8 years ago
Unverified
86b63ba78319519ec8b876382ea45d6b62ba2085

Fix lost html tag in <head>

TTomDeS committed 8 years ago

README

The README file for this repository.

Netlify CMS small-business template

This is a small business template built with Victor Hugo and Netlify CMS, designed and developed by Darin Dimitroff, spacefarm.digital.

Getting started

Use our deploy button to get your own copy of the repository:

Deploy to Netlify

Once that is done, you need to setup the GitHub integration for Netlify CMS.

Go to https://github.com/settings/developers and register a new application.

Then go to the "Access" tab in your new Netlify site and add a GitHub authentication provider.

Once that's done, you'll be able to enter the CMS by going to the URL of your new site and appending /admin

Local Development

Clone this repository, and run yarn or npm install from the new folder to install all required dependencies.

Then start the development server with yarn start or npm start.

Layouts

The template is based on small, content-agnostic partials that can be mixed and matched. The pre-built pages showcase just a few of the possible combinations. Refer to the site/layouts/partials folder for all available partials.

Use Hugo’s dict functionality to feed content into partials and avoid repeating yourself and creating discrepancies.

CSS

The template uses a custom fork of Tachyons and PostCSS with cssnext and cssnano. To customize the template for your brand, refer to src/css/imports/_variables.css where most of the important global variables like colors and spacing are stored.

SVG

All SVG icons stored in site/static/img/icons are automatically optimized with SVGO (gulp-svgmin) and concatenated into a single SVG sprite stored as a a partial called svg.html. Make sure you use consistent icons in terms of viewport and art direction for optimal results. Refer to an SVG via the <use> tag like so:

<svg width="16px" height="16px" class="db">
  <use xlink:href="https://raw.githubusercontent.com/erquhart/bright-cms/master/#SVG-ID"></use>
</svg>