It was made with lots of ❤️ and care.
Below you’ll find the (slightly trimmed) directory structure for my Hugo site . I’ll go through it all alphabetically.
hugo new blog/new_post.md
and hugo would populate the front matter with the blog
content front-matter. A script outputting a template basically.about.md
. Blog posts, Project Posts. Everything!list.html
and single.html
templates.layouts
directory that pulls their “list” and “single” templates..
├── README.md
├── archetypes/
│ └── default.md
├── assets/
│ ├── sass/
│ │ └── main.scss
│ └── js/
│ └── main.js
├── config.toml
├── content/
│ ├── about.md
│ ├── blog
│ └── projects
├── data/
├── layouts/
│ ├── 404.html
│ ├── _default/
│ │ ├── baseof.html
│ │ ├── list.html
│ │ └── single.html
│ ├── about/
│ │ └── single.html
│ ├── blog/
│ │ ├── list.html
│ │ └── single.html
│ ├── index.html
│ ├── partials/
│ │ ├── footer.html
│ │ ├── header.html
│ │ └── main.html
│ ├── projects/
├── netlify.toml
├── public/
├── static/
│ ├── assets
│ │ ├── gmo-logo.svg
│ │ ├── pines.svg
│ ├── img
│ │ └── GMO.png
└── themes/