Skip to content
This repository has been archived by the owner on Dec 24, 2021. It is now read-only.

Commit

Permalink
Update README with better instructions and lisence
Browse files Browse the repository at this point in the history
  • Loading branch information
biilmann committed Aug 9, 2016
1 parent d8c491f commit de63385
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 9 deletions.
59 changes: 55 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Hugo with PostCSS and Babel
# Hugo with PostCSS and Webpack/Babel

This is a boilerplate for using Hugo as a static site generator and Gulp + Weback as the
asset pipeline.
Expand All @@ -14,20 +14,71 @@ npm install
npm start
```

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

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

```bash
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](http://cssnext.io/)
to `/dist/css/{filename}.css`. Import statements will be resolved as part of the build

## Deploying to netlify

Push your clone to your own GitHub repo, then start a new netlify project, pick
Push your clone to your own GitHub repo, then start a new Netlify project, pick
your repository and configure it like this:

* **Build Command:** npm run build
* **Directory:** dist

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

## Enjoy!!


**The MIT License (MIT)**
Copyright (c) 2016 Mathias Biilmann Christensen

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2 changes: 1 addition & 1 deletion gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ gulp.task("build", ["css", "js", "hugo"]);
gulp.task("css", () => (
gulp.src("./src/css/*.css")
.pipe(postcss([cssnext(), cssImport({from: "./src/css/main.css"})]))
.pipe(gulp.dest("./dist"))
.pipe(gulp.dest("./dist/css"))
.pipe(browserSync.stream())
));

Expand Down
2 changes: 1 addition & 1 deletion site/layouts/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<html>
<head>
<title>Hugo with Gulp and Webpack</title>
<link rel="stylesheet" href="/main.css"/>
<link rel="stylesheet" href="/css/main.css"/>
</head>
<body>
4 changes: 1 addition & 3 deletions src/css/main.css
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
body {
font-size: 16px;
}
@import "imports/reset.css";

0 comments on commit de63385

Please sign in to comment.