Static Sites
Pour faire des sites statiques :)
Mis à jour
sudo dnf install ruby-devel # Installation
gem install jekyll # Installation gem jekyll
jekyll new my-site # Create new site
cd my-site # Navigate to new site
jekyll serve # Launch server (http://localhost:4000)sudo dnf install hugo # Installation
hugo new site my-site # Creating a new website
cd my-site # Navigate to new site
git init # Add a theme (ex: themes/ananke)
git submodule add https://github.com/budparr/gohugo-theme-ananke.git
hugo server # Launch server