Giter Site home page Giter Site logo

11ty-website-example's Introduction

11ty-website-example

Resources

Notes

Package.json

If removing files, delete the _sites folder and re-run npx @11ty/eleventy. The tool will not clean out old files. This can be automated by using the scripts section of package.json: rm -rf folder_name.

With the line "build": "npx @11ty/eleventy" in the scripts section of the package.json file, you can call npm run build as shorthand for npx @11ty/eleventy.

Here are some default scripts:

"build": "npx @11ty/eleventy",
"serve": "npx @11ty/eleventy --serve"

They can be chained like this:

"clean": "rm -rf docs",
"build": "npx @11ty/eleventy",
"clean:build": "npm run clean && npm run build"

GitHub Pages Publishing

Switch the output folder from the default _site to docs in the .eleventy.js config file.

Add a path prefix for the repository name because eleventy assumes root by default.

module.exports = function(eleventyConfig) {
    return {
        pathPrefix: "/11ty-website-example/",
        dir: {
            output: "docs"
        }
    }
}

Liquid Templates

To use includes without quotes, they need to be enabled via dynamicPartials: false in the Liquid options. Front matter in the include fill will not be evaluated. By default, includes must be formatted this way: {% include 'user' %}, which looks for _includes/user.liquid.

11ty-website-example's People

Contributors

matikin9 avatar

Watchers

 avatar  avatar

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.