Welcome to mirror list, hosted at ThFree Co, Russian Federation.

directory-structure.md « basic-hyas « docs « content - github.com/h-enk/doks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57356ff4e96f37e73f020fe637bc0a58851a98fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
---
title: "Directory Structure"
description: "The Hyas project directory structure extends Hugo's."
lead: "The Hyas project directory structure extends Hugo's."
date: 2020-04-20T14:14:16+02:00
lastmod: 2020-04-20T14:14:16+02:00
draft: false
images: []
menu: 
  docs:
    parent: "basic-hyas"
weight: 110
toc: true
---

```bash
.
├── 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](https://gohugo.io/getting-started/directory-structure/).

## Root directories

### archetypes

```bash
..
├── blog.md
└── default.md
```

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

### assets

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

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

### config

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

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

### content

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

See also the Hugo docs: [Content Organization](https://gohugo.io/content-management/organization/).

### data

See the Hugo docs: [Data Templates](https://gohugo.io/templates/data-templates/).

### layouts

```bash
..
├── _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](https://gohugo.io/content-management/static-files/)

## Root files

### .eslintignore

See the ESLint docs: [Ignoring Files and Directories](https://eslint.org/docs/user-guide/configuring#ignoring-files-and-directories).

### .eslintrc.json

See the ESLint docs: [Configuring ESLint](https://eslint.org/docs/user-guide/configuring).

### .markdownlint.json

See the markdownlint Readme: [Rules / Aliases](https://github.com/DavidAnson/markdownlint#rules--aliases).

### .markdownlintignore

See the markdownlint-cli Readme: [Ignoring Files](https://github.com/igorshubovych/markdownlint-cli#ignoring-files).

### .stylelintignore

See the stylelint docs: [Ignoring code](https://stylelint.io/user-guide/ignore-code).

### .stylelintrc.json

See the stylelint docs: [Configuration](https://stylelint.io/user-guide/configure).

### babel.config.js

See the Babel docs: [Configure Babel](https://babeljs.io/docs/en/configuration).

### netlify.toml

See the Netlify docs: [File-based configuration](https://docs.netlify.com/configure-builds/file-based-configuration/).

### package.json

See the Yarn Documentation: [package.json](https://classic.yarnpkg.com/en/docs/package-json/).