- SCSS 89.9%
- HTML 6.1%
- CSS 2.7%
- JavaScript 1.3%
| archetypes | ||
| assets/sass | ||
| config | ||
| content | ||
| layouts | ||
| static | ||
| .gitignore | ||
| .gitlab-ci.yml | ||
| LICENSE | ||
| README.md | ||
Building my personal website
This website is based on the following free and open source tools and previous works:
- Hugo, a static website generator
- Bootstrap, a CSS and JavaScript framework for creating fast and responsive websites
- Bootswatch, a collection of themes for Bootstrap
- Font Awesome, an icon library and toolkit
You can find a complete list of third-party resources used by this site in the
content/pages/ressources/index.md file, which is the source for page
https://www.palabritudes.net/ressources.html.
Deployment
This website is automatically deployed using GitLab CI.
The files are deployed on two different virtual hosts, depending on the branch:
mainbranch (productionenvironment): https://www.palabritudes.net- other branches (
stagingenvironment): https://test.palabritudes.net
Local build and test
You can build the site locally and serve it to preview the results using the following command:
$ hugo server --config config/_defaut/hugo.toml \
--disableFastRender \
--cleanDestinationDir \
--printPathWarnings
To include articles that are still in draft form, add the --buildDrafts
option:
$ hugo server --config config/_defaut/hugo.toml \
--disableFastRender \
--cleanDestinationDir \
--printPathWarnings \
--buildDrafts
To include articles with a publication date in the future, add the
--buildFuture option:
$ hugo server --config config/_defaut/hugo.toml \
--disableFastRender \
--cleanDestinationDir \
--printPathWarnings \
--buildFuture
Copyright and license
Copyright 2009–2026, Sébastien Dinot
Unless otherwise stated, the content of this site is made available under the terms of the Creative Commons Attribution 4.0 International License. A copy of these license is provided in the LICENSE file.