Code Monkey home page Code Monkey logo

victor-hugo's Introduction

Victor Hugo

A Hugo boilerplate for creating truly epic websites

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

Victor Hugo setup to use PostCSS and Babel for CSS and JavaScript compiling/transpiling.

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

Usage

โ— Prerequisites

You need to have the latest/LTS node and npm versions installed in order to use Victor Hugo.

Next step, clone this repository and run:

npm install

This will take some time and will install all packages necessary to run Victor Hugo and its tasks.

๐Ÿ‘ท Development

While developing your website, use:

npm start

or for developing your website with hugo server --buildDrafts --buildFuture, use:

npm run preview

Then visit http://localhost:3000/ - or a new browser windows popped-up already - to preview your new website. Webpack Dev Server will automatically reload the CSS or refresh the whole page, when stylesheets or content changes.

๐Ÿ“ฆ Static build

To build a static version of the website inside the /dist folder, run:

npm run build

To get a preview of posts or articles not yet published, run:

npm run build:preview

See package.json for all tasks.

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              // Webpack will bundle imported css seperately
|  |--index.js         // index.js is the webpack entry for your css & js assets

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 end 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/index.js file is the entrypoint for webpack and will be built to /dist/main.js

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

Any CSS file imported into the index.js will be run through Webpack, compiled with PostCSS Next, and minified to /dist/[name].[hash:5].css. Import statements will be resolved as part of the build.

Environment variables

To separate the development and production - aka build - stages, all gulp tasks run with a node environment variable named either development or production.

You can access the environment variable inside the theme files with getenv "NODE_ENV". See the following example for a conditional statement:

{{ if eq (getenv "NODE_ENV") "development" }}You're in development!{{ end }}

All tasks starting with build set the environment variable to production - the other will set it to development.

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!! ๐Ÿ˜ธ

victor-hugo's People

Contributors

renovate[bot] avatar calavera avatar atomtigerzoo avatar biilmann avatar bdougie avatar mattsturgeon avatar fool avatar sibiraj-s avatar erquhart avatar kalinchernev avatar joshua-scott avatar colorful-tones avatar burmecia avatar kcollasarundell avatar kleink avatar miguelmayo avatar tinymachine avatar thinlines avatar tomanistor avatar trys avatar bryankang avatar leopuleo avatar midzer avatar tech4him1 avatar kahwee avatar dzello avatar joe6pack avatar jpalmieri avatar jankollars avatar wedi avatar

Watchers

James Cloos avatar  avatar

victor-hugo's Issues

Dependency Dashboard

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Rate-Limited

These updates are currently rate-limited. Click on a checkbox below to force their creation now.

  • chore(deps): replace dependency babel-eslint with @babel/eslint-parser ^7.11.0
  • chore(deps): replace dependency npm-run-all with npm-run-all2 ^5.0.0
  • chore(deps): update dependency babel-loader to v9
  • chore(deps): update dependency copy-webpack-plugin to v12
  • chore(deps): update dependency css-loader to v7
  • chore(deps): update dependency eslint to v9
  • chore(deps): update dependency exports-loader to v5
  • chore(deps): update dependency fancy-log to v2
  • chore(deps): update dependency imports-loader to v5
  • chore(deps): update dependency mini-css-extract-plugin to v2
  • chore(deps): update dependency node to v20
  • chore(deps): update dependency node-sass to v9
  • chore(deps): update dependency plugin-error to v2
  • chore(deps): update dependency postcss-import to v16
  • chore(deps): update dependency postcss-loader to v8
  • chore(deps): update dependency postcss-preset-env to v9
  • chore(deps): update dependency rimraf to v5
  • chore(deps): update dependency sass-loader to v14
  • chore(deps): update dependency style-loader to v4
  • chore(deps): update dependency webpack to v5
  • chore(deps): update dependency webpack-cli to v5
  • chore(deps): update dependency webpack-dev-server to v5
  • chore(deps): update dependency webpack-merge to v5
  • ๐Ÿ” Create all rate-limited PRs at once ๐Ÿ”

Edited/Blocked

These updates have been manually edited so Renovate will no longer make changes. To discard all commits and start over, click on a checkbox.

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Detected dependencies

npm
package.json
  • @babel/core ^7.1.2
  • @babel/plugin-proposal-object-rest-spread ^7.0.0
  • @babel/plugin-syntax-object-rest-spread ^7.0.0
  • @babel/preset-env ^7.1.0
  • @babel/register ^7.0.0
  • assets-webpack-plugin ^3.9.7
  • babel-eslint ^10.0.1
  • babel-loader ^8.0.4
  • clean-webpack-plugin ^3.0.0
  • copy-webpack-plugin ^5.0.0
  • cross-env ^5.2.0
  • css-loader ^2.0.0
  • eslint ^5.8.0
  • eslint-plugin-import ^2.14.0
  • exports-loader ^0.7.0
  • fancy-log ^1.3.2
  • file-loader ^4.0.0
  • hugo-bin ^0.37.0
  • imports-loader ^0.8.0
  • mini-css-extract-plugin ^0.7.0
  • node-sass ^4.10.0
  • npm-run-all ^4.1.5
  • optimize-css-assets-webpack-plugin ^5.0.1
  • plugin-error ^1.0.1
  • postcss-import ^12.0.1
  • postcss-loader ^3.0.0
  • postcss-preset-env ^6.3.0
  • rimraf ^2.6.2
  • sass-loader ^7.1.0
  • style-loader ^0.23.1
  • uglifyjs-webpack-plugin ^2.0.1
  • url-loader ^2.0.0
  • webpack ^4.25.1
  • webpack-cli ^3.1.2
  • webpack-dev-server ^3.1.10
  • webpack-merge ^4.1.4
  • whatwg-fetch ^3.0.0
  • natives 1.1.6
nvm
.nvmrc
  • node 8.15.0

  • Check this box to trigger a request for Renovate to run again on this repository

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.