Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/djarty24/jekyll-simple-blue
⛅︎ A minimal white-blue Jekyll theme.
https://github.com/djarty24/jekyll-simple-blue
jekyll jekyll-theme
Last synced: 3 months ago
JSON representation
⛅︎ A minimal white-blue Jekyll theme.
- Host: GitHub
- URL: https://github.com/djarty24/jekyll-simple-blue
- Owner: djarty24
- License: mit
- Created: 2023-10-17T17:12:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-27T02:08:18.000Z (6 months ago)
- Last Synced: 2024-09-28T18:20:56.174Z (3 months ago)
- Topics: jekyll, jekyll-theme
- Language: HTML
- Homepage: https://rubygems.org/gems/jekyll-simple-blue
- Size: 9.11 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# jekyll-simple-blue
⛅︎ A minimal, white-blue Jekyll theme, including about, resume, and contact pages.
![Screenshot](https://raw.githubusercontent.com/djarty24/jekyll-simple-blue/master/screenshot.png)
## Contents
- [Installation](#installation)
- [Customizing](#customizing)
- [Page Layouts](#page-layouts)
- [Site Settings](#site-settings)## Installation
Add this line to your Jekyll site's `Gemfile`:
```ruby
gem "jekyll-simple-blue"
```And add this line to your Jekyll site's `_config.yml`:
```yaml
theme: jekyll-simple-blue
```And then execute:
$ bundle
Or install it yourself as:
$ gem install jekyll-simple-blue
## Customizing
Using simple-blue as a theme means you can take advantage of the file overriding method. This allows you to overwrite any file in this theme with your own custom file, by matching the file name and path. The most common example of this would be if you want to add your own styles or change the core style settings.
To add your own styles copy the [`styles.css`](https://github.com/djarty24/jekyll-simple-blue/raw/main/assets/styles.css) into your own project with the same file path (`assets/styles.css`). From there you can add your own styles, and modify or even remove existing ones.
## Page-Layouts
There are 3 layouts; `page`, `post`, and `home` (home acts as the front page blog).
## Site-Settings
To modify set parameters, you need to modify the `_config.yml` `title` and `url`.
Additionally, you need to add the following parameters to edit the author name, email, and optionall, the file path to your resume:
```yaml
author:
name: Your name
email: Your email
```To add your resume and favicon, simply copy ithemt into the root folder with the names `resume.pdf` and `favicon.ico`. If you'd like custom names, you will have to modify the `_config.yml` file:
```yaml
resume: "/resume.pdf" # add your resume filepath here
favicon: "/favicon.ico" # add your favicon filepath here
```