Go to file
Julie Lenaerts 35010d973b
All checks were successful
Build an image to deploy website / build (push) Successful in 1m45s
version updated to 3.1.0
2024-04-17 20:00:22 +02:00
.changes version updated to 3.1.0 2024-04-17 20:00:22 +02:00
.gitea/workflows remove the debug step 2024-01-24 19:49:43 +01:00
.idea Setup gitea action to build the website, build docker image and push it on registry 2024-01-24 14:23:07 +01:00
.vscode update code formating 2023-07-06 09:10:59 +06:00
assets add the brochure for downloading 2024-02-07 16:56:54 +01:00
config/_default adjust menu items 2024-01-18 19:16:58 +01:00
content Add link and qr code to join matrix chat room 2024-04-17 19:59:17 +02:00
data use 'dark' class locally in header, hero or custom sections. adapt dark styles. 2023-11-08 15:17:02 +01:00
i18n adapt social network, add i18n for nl 2023-11-08 10:57:39 +01:00
scripts update contact form and hugo modules 2023-08-06 08:19:16 +06:00
static Add link and qr code to join matrix chat room 2024-04-17 19:59:17 +02:00
themes/hugoplate Put language selector in white 2024-01-29 12:13:42 +01:00
.changie.yaml Add changie 2024-01-24 14:28:08 +01:00
.editorconfig initialize hugoplate 2023-05-25 16:41:54 +06:00
.gitignore Add changie 2024-01-24 14:28:08 +01:00
.gitlab-ci.yml remove cusom hugo_stats decoder, fixed theme.json update auto reload 2023-09-02 09:40:53 +06:00
.jshintrc initialize hugoplate 2023-05-25 16:41:54 +06:00
.markdownlint.json initialize hugoplate 2023-05-25 16:41:54 +06:00
.prettierrc update prettierrc and navigation 2023-07-22 11:20:40 +06:00
amplify.yml remove cusom hugo_stats decoder, fixed theme.json update auto reload 2023-09-02 09:40:53 +06:00
CHANGELOG.md version updated to 3.1.0 2024-04-17 20:00:22 +02:00
docker-compose.yaml setup hugoplate for development of chill website 2023-10-09 15:42:02 +02:00
Dockerfile Setup gitea action to build the website, build docker image and push it on registry 2024-01-24 14:23:07 +01:00
drone.yml Add caddyfile 2024-01-22 19:06:42 +01:00
go.mod Setup gitea action to build the website, build docker image and push it on registry 2024-01-24 14:23:07 +01:00
hugo.toml update title to improve google indexation 2024-04-17 16:27:05 +02:00
LICENSE initialize hugoplate 2023-05-25 16:41:54 +06:00
netlify.toml remove cusom hugo_stats decoder, fixed theme.json update auto reload 2023-09-02 09:40:53 +06:00
package.json setup hugoplate for development of chill website 2023-10-09 15:42:02 +02:00
postcss.config.js setup hugoplate for development of chill website 2023-10-09 15:42:02 +02:00
readme.md Update readme file with deployment instructions 2024-01-24 18:28:45 +00:00
tailwind.config.js setup hugoplate for development of chill website 2023-10-09 15:42:02 +02:00
theme.toml remove cusom hugo_stats decoder, fixed theme.json update auto reload 2023-09-02 09:40:53 +06:00
vercel-build.sh remove cusom hugo_stats decoder, fixed theme.json update auto reload 2023-09-02 09:40:53 +06:00
vercel.json added project-setup script 2023-07-05 15:19:52 +06:00

Specifics for CHILL website

Using docker

Note: it is possible to install using this single command: docker compose run --rm front npm i

Since we are using docker to launch the website a few things must be done if you are launching it for the first time. Follow these steps:

  1. In docker-compose.yaml file replace npm run dev with tail -f /dev/null (This allows the container to keep running while we install all the dependencies in package.json. Without this command the container would exit, because of error)
  2. In another terminal window go into the container docker-compose exec front sh
  3. Run npm i
  4. Once all dependencies are installed exit the container and stop the container running in the other terminal window
  5. Change the command line tail -f /dev/null back to npm run dev
  6. In the package.json file change the dev command with "hugo server --bind 0.0.0.0"
  7. Launch the container again docker-compose up --force-recreate

Deployment

  1. Create a changie to keep track of the changes you made and create a new version.
  2. Launch the CI by tagging your last commits and pushing the tag. The tag should start with v and then the version number.
  3. Change the tag in ansible and apply the changes

Hugo + Tailwind CSS Starter and Boilerplate

Hugoplate is a free starter template built with Hugo, and TailwindCSS, providing everything you need to jumpstart your Hugo project and save valuable time.

Made with ♥ by Zeon Studio

If you find this project useful, please give it a to show your support.

👀 Demo | Page Speed (95+)🚀

license code size contributors

🎁 What's Included

We have included almost everything you need to start your Hugo project. Let's see what's included in this template:

📌 Key Features

  • 👥 Multi-Authors
  • 🎯 Similar Posts Suggestion
  • 🔍 Search Functionality
  • 🌑 Dark Mode
  • 🏷️ Tags & Categories
  • 🔗 Netlify setting pre-configured
  • 📞 Support contact form
  • 📱 Fully responsive
  • 📝 Write and update content in Markdown
  • 💬 Disqus Comment
  • 🔳 Syntax Highlighting

📄 15+ Pre-designed Pages

  • 🏠 Homepage
  • 👤 About
  • 📞 Contact
  • 👥 Authors
  • 👤 Author Single
  • 📝 Blog
  • 📝 Blog Single
  • 🚫 Custom 404
  • 💡 Elements
  • 📄 Privacy Policy
  • 🏷️ Tags
  • 🏷️ Tag Single
  • 🗂️ Categories
  • 🗂️ Category Single
  • 🔍 Search

📦 Tech Stack


🚀 Getting Started

First you need to clone or download the template repository, and then let's get started with the following process:

⚙️ Prerequisites

To start using this template, you need to have some prerequisites installed on your machine.

👉 Project Setup

We build this custom script to make your project setup easier. It will create a new Hugo theme folder, and clone the Hugoplate theme into it. Then move the exampleSite folder into the root directory. So that you can start your Hugo server without going into the exampleSite folder. Use the following command to setup your project.

npm run project-setup

👉 Install Dependencies

Install all the dependencies using the following command.

npm install

👉 Development Command

Start the development server using the following command.

npm run dev

🎬 Still Confused? Watch a Quick Video

https://github.com/zeon-studio/hugoplate/assets/58769763/c260c0ae-91be-42ce-b8db-aa7f11f777bd


📝 Customization

This template has been designed with a lot of customization options in mind. You can customize almost anything you want, including:

👉 Site Config

You can change the site title, base URL, language, theme, plugins, and more from the hugo.toml file.

👉 Site Params

You can customize all the parameters from the config/_default/params.toml file. This includes the logo, favicon, search, SEO metadata, and more.

👉 Colors and Fonts

You can change the colors and fonts from the data/theme.json file. This includes the primary color, secondary color, font family, and font size.

You can change the social links from the data/social.json file. Add your social links here, and they will automatically be displayed on the site.


🛠 Advanced Usage

We have added some custom scripts to make your life easier. You can use these scripts to help you with your development.

👉 Update Modules

We have added a lot of modules to this template. You can update all the modules using the following command.

npm run update-modules

👉 Remove Dark Mode

If you want to remove dark mode from your project, then you have to do it manually from everywhere. So we build a custom script to do it for you. you can use the following command to remove dark mode from your project.

npm run remove-darkmode

🚀 Build And Deploy

After you finish your development, you can build or deploy your project almost everywhere. Let's see the process:

👉 Build Command

To build your project locally, you can use the following command. It will purge all the unused CSS and minify all the files.

npm run build

👉 Deploy Site

We have provided 5 different deploy platform configurations with this template, so you can deploy easily.

And if you want to Host some other hosting platforms. then you can build your project, and you will get a public folder. that you can copy and paste on your hosting platform.

Note: You must change the baseURL in the hugo.toml file. Otherwise, your site will not work properly.


🔒 Guide to Staying Compliant

🐞 Reporting Issues

We use GitHub Issues as the official bug tracker for this Template. Please Search existing issues. Its possible someone has already reported the same problem. If your problem or idea has not been addressed yet, feel free to open a new issue.

🖼️ Showcase

List of projects people are building with Hugoplate! Have you built a project with Hugoplate? Submit it by creating a pull request and we'll feature it here!

Open Neuromorphic AI Models Hugobricks
Open Neuromorphic AI Models Hugobricks

📝 License

Copyright (c) 2023 - Present, Designed & Developed by Zeon Studio

Code License: Released under the MIT license.

Image license: The images are only for demonstration purposes. They have their license, we don't have permission to share those images.