portails/content/docs/basic-hyas/directory-structure.md

4.1 KiB

title description lead date lastmod draft images menu weight toc
Directory Structure The Hyas project directory structure extends Hugo's. The Hyas project directory structure extends Hugo's. 2020-04-20T14:14:16+02:00 2020-04-20T14:14:16+02:00 false
docs
parent
basic-hyas
110 true
.
├── archetypes/
├── assets/
├── config/
├── content/
├── data/
├── layouts/
├── static/
├── .eslintignore
├── .eslintrc.json
├── .markdownlint.json
├── .markdownlintignore
├── .stylelintignore
├── .stylelintrc.json
├── babel.config.js
├── netlify.toml
└── package.json

See also the Hugo docs: Directory Structure.

Root directories

archetypes

..
├── blog.md
└── default.md

See also: [Archetypes]({{< ref "archetypes" >}}).

assets

..
├── fonts/
├── images/
├── js/
│   ├── vendor/
│   └── app.js
├── lambda/
└── scss/
    ├── common/
    ├── components/
    ├── layouts/
    ├── vendor/
    └── app.scss

See also: [Assets]({{< ref "assets" >}})

config

..
├── _default/
│   ├── config.toml
│   ├── menus.toml
│   └── params.toml
├── production/
├── staging/
└── postcss.config.js

See also: [Project Configuration]({{< ref "project-configuration" >}}).

content

..
├── blog/
├── quick-start/
└── _index.md

See also the Hugo docs: Content Organization.

data

See the Hugo docs: Data Templates.

layouts

..
├── _default/
│   ├── baseof.html
│   ├── list.html
│   └── single.html
├── blog/
│   └── single.html
├── categories/
│   ├── list.html
│   └── terms.html
├── partials/
│   ├── content/
│   ├── footer/
│   │   ├── footer.html
│   │   └── script-footer.html
│   ├── head/
│   │   ├── favicons.html
│   │   ├── head.html
│   │   ├── opengraph.html
│   │   ├── resource-hints.html
│   │   ├── script-header.html
│   │   ├── seo.html
│   │   ├── structured-data.html
│   │   ├── stylesheet.html
│   │   └── twitter_cards.html
│   ├── header/
│   │   ├── alert.html
│   │   └── header.html
│   └── sidebar/
├── shortcodes/
│   └── img.html
├── 404.html
├── index.headers
├── index.html
├── index.redirects
├── robots.txt
├── rss.xml
└── sitemap.xml

See also: [Layouts]({{< ref "layouts" >}}).

static

See the Hugo docs: Static Files

Root files

.eslintignore

See the ESLint docs: Ignoring Files and Directories.

.eslintrc.json

See the ESLint docs: Configuring ESLint.

.markdownlint.json

See the markdownlint Readme: Rules / Aliases.

.markdownlintignore

See the markdownlint-cli Readme: Ignoring Files.

.stylelintignore

See the stylelint docs: Ignoring code.

.stylelintrc.json

See the stylelint docs: Configuration.

babel.config.js

See the Babel docs: Configure Babel.

netlify.toml

See the Netlify docs: File-based configuration.

package.json

See the Yarn Documentation: package.json.