Customizing Jekyll Blog Server Components
Jekyll is a simple and static blog server that allows for extensive customization. To replace the original files with your custom components, follow these steps:
- Navigate to the
docs
directory. - Adhere to the structure of the original project.
- Focus on modifying files that have the
_custom
suffix first.
By following these guidelines, you can effectively customize the Jekyll blog server to meet your specific requirements.
Examples
Customize site-footer
- Toggle elements with
F12
key.- Find it is “site-footer”
Looking for
custom_footer
in_config.yml
or looking for Source Code indocs/_includes/nav_footer_custom.html
Customize title
- Toggle elements with
F12
key.- Find it is “title”
- Looking for
title
in_config.yml
or looking for Source Code indocs/_includes/title.html
Found it in
_config.yml
and edit it:title: Python Poetry WSL2-Ubuntu-GPU Docker Template description: ...
However, it’s looks like:
Searching in Source Code and add
title.html
todocs/_includes/
to customize it.
Please see more details in official documentations.