111763 Views
85221 Views
83639 Views
51774 Views
49949 Views
48472 Views
Obsidian - the best tool for Makers
10 Projects for your Raspberry Pi Pico
Raspberry Pi Telegraf Setup with Docker
Setting Up Dynamic DNS on a Raspberry Pi for Self-Hosting
Raspberry Pi WordPress Setup with Docker
Raspberry Pi WireGuard VPN Setup with Docker
Using the Raspberry Pi Pico's Built-in Temperature Sensor
Getting Started with SQL
Introduction to the Linux Command Line on Raspberry Pi OS
How to install MicroPython
Wall Drawing Robot Tutorial
BrachioGraph Tutorial
KevsRobots Learning Platform
48% Percent Complete
By Kevin McAleer, 3 Minutes
Welcome to Lesson 4. In this lesson, we’ll explore the various ways you can customize your Jekyll site to make it truly your own. We’ll look at themes, layouts, and how to add custom CSS and JavaScript for more personalized functionality.
Jekyll themes provide a quick way to style your site. But, they are also fully customizable.
theme
_config.yml
_config.yml The _config.yml file is the main configuration file for your Jekyll site. It contains settings like the site’s title, description, and theme. It’s written in YAML, a human-readable data serialization language. Here is an example _config.yml file: title: My Jekyll Site description: A site about Jekyll theme: jekyll-theme-minimal
The _config.yml file is the main configuration file for your Jekyll site. It contains settings like the site’s title, description, and theme. It’s written in YAML, a human-readable data serialization language.
Here is an example _config.yml file:
title: My Jekyll Site description: A site about Jekyll theme: jekyll-theme-minimal
_layouts
Jekyll allows you to alter the CSS and HTML for finer control over your site’s appearance.
assets/css
_includes
Enhance your site’s interactivity and functionality with JavaScript.
assets/js
You now have the tools to customize your Jekyll site, making it not only functional but also unique in design and interactivity.
Customize the theme of your Jekyll site. Try modifying the CSS to change the color scheme and add a simple JavaScript function, like a dynamic date display.
< Previous Next >