GitXplorerGitXplorer
b

auth0-example

public
7 stars
8 forks
0 issues

Commits

List of commits on branch master.
Unverified
855026681012033c7e4eb93d31e2c62036c73bf0

Merge pull request #11 from netlify/project_management

bbiilmann committed 8 years ago
Verified
ab742c49bc46184b28e8e4f8a8c6aa1491d2b8b0

Add project management files.

ccalavera committed 8 years ago
Unverified
b5f6906b5bb16cf1859d831132d92bb62209cd5e

add deploy to netlify button.

bbdougie committed 8 years ago
Unverified
5ae9e9496f164e7cfdb62b69b71a671e638c7f7a

Merge pull request #6 from netlify/make-sure-to-exit-with-non-zero-exit-code-on-error

bbiilmann committed 8 years ago
Unverified
473345578f2977d6c4833bb930a4c8fb7fdae436

Make sure to exit with non-zero exit code on hugo error

bbiilmann committed 8 years ago
Unverified
742a26610cefd71c35683e66d10e327260167ec5

Merge pull request #5 from netlify/add_license_file

ccalavera committed 8 years ago

README

The README file for this repository.

Victor Hugo

A Hugo boilerplate for creating truly epic websites

This is a boilerplate for using Hugo as a static site generator and Gulp + Weback as your asset pipeline.

It's setup to use post-css and babel for CSS and JavaScript.

This project is released under the MIT license. Please make sure you understand its implications and guarantees.

Usage

Be sure that you have the latest node, npm and Hugo installed. If you need to install hugo, run:

brew install hugo

Next, clone this repository and run:

npm install
npm start

Then visit http://localhost:3000/ - BrowserSync will automatically reload CSS or refresh the page when stylesheets or content changes.

To build your static output to the /dist folder, use:

npm run build

Structure

|--site                // Everything in here will be built with hugo
|  |--content          // Pages and collections - ask if you need extra pages
|  |--data             // YAML data files with any data for use in examples
|  |--layouts          // This is where all templates go
|  |  |--partials      // This is where includes live
|  |  |--index.html    // The index page
|  |--static           // Files in here ends up in the public folder
|--src                 // Files that will pass through the asset pipeline
|  |--css              // CSS files in the root of this folder will end up in /css/...
|  |--js               // app.js will be compiled to /js/app.js with babel

Basic Concepts

You can read more about Hugo's template language in their documentation here:

https://gohugo.io/templates/overview/

The most useful page there is the one about the available functions:

https://gohugo.io/templates/functions/

For assets that are completely static and don't need to go through the asset pipeline, use the site/static folder. Images, font-files, etc, all go there.

Files in the static folder ends up in the web root. So a file called site/static/favicon.ico will end up being available as /favicon.ico and so on...

The src/js/app.js file is the entrypoint for webpack and will be built to /dist/app.js.

You can use ES6 and use both relative imports or import libraries from npm.

Any CSS file directly under the src/css/ folder will get compiled with PostCSS Next to /dist/css/{filename}.css. Import statements will be resolved as part of the build

Deploying to netlify

Now netlify will build and deploy your site whenever you push to git.

You can also click this button:

Deploy to Netlify

Enjoy!!