Your website looks amazing on - although it should be noted that you are currently using HTTP instead of HTTPS as mentioned in your initial question!
If you have an SSL/TLS certificate for this domain, it's important to update the url
in your _config.yml
file to reflect the correct protocol: https://chanvrequebec.com
Here are a few key points to consider:
1st. In your _config.yml
, you have specified:
markdown: redcarpet
However, starting from May 1st, Github Pages will no longer support redcarpet
. It is recommended to switch to:
markdown: kramdown
2nd. Your website should also be accessible at , but due to GitHub Pages configuration error, this is not currently the case. To address this, you need to set the baseurl
to baseurl: '/website'
or update the url
to http://jaubut.github.io/website
. However, the latter option may lead to issues with internal links redirecting to the github.io subdomain.
To resolve these issues properly, here's what you should do:
- Create a new repository named
jaubut.github.io
(User website)
- Transfer the content from your current repo
website
to the master
branch of the newly created repository
- Maintain the current settings in your
_config.yml
- Your website will then be accessible at and
- Delete the
website
repository once the transfer is complete
- If you have an SSL/TLS certificate for your domain
chanvrequebec.com
, remember to update the url
in your _config.yml
accordingly: change url: "http://chanvrequebec.com"
to url: "https://chanvrequebec.com"
All done!
I hope this information proves helpful to you!