Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benbalter/retlab
A minimalist Jekyll theme for your personal site
https://github.com/benbalter/retlab
jekyll jekyll-theme
Last synced: about 1 month ago
JSON representation
A minimalist Jekyll theme for your personal site
- Host: GitHub
- URL: https://github.com/benbalter/retlab
- Owner: benbalter
- License: mit
- Created: 2016-07-30T21:43:36.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-05-28T00:10:28.000Z (6 months ago)
- Last Synced: 2024-05-28T09:40:35.896Z (6 months ago)
- Topics: jekyll, jekyll-theme
- Language: HTML
- Homepage: http://ben.balter.com
- Size: 8.79 MB
- Stars: 75
- Watchers: 11
- Forks: 36
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Retlab
[![CI](https://github.com/benbalter/retlab/actions/workflows/ci.yml/badge.svg)](https://github.com/benbalter/retlab/actions/workflows/ci.yml)
![Screenshot of Retlab](screenshot.png)
A minimalist Jekyll theme for your personal site
## Installation
1. Add this line to your site's configuration:
```yaml
remote_theme: benbalter/retlab
```2. Save a header image to `/assets/img/header.jpg`. It should be 400px by 1140px.
## Configuration
You’ll want to customize and add the following configurations to your site’s `_config.yml` file:
```yml
title: Ben Balter
description: Attorney, open source developer, product managerlang: en-US
# Pages to include in header navigation
nav_pages:
- index.html
- talks.md
- press.md
- about.md
- contact.md# Pages to include in footer navigation
footer_pages:
- books.md
- fine-print.md# Disqus login information, for comments
disqus:
shortname: DISQUS_USERNAME# Links to include on the contact page
contact_links:
- name: Twitter
url: https://twitter.com/BenBalter
icon: twitter
- name: Facebook
url: https://facebook.com/BenBalter
icon: facebook# Front matter defaults
defaults:
-
scope:
path: ""
type: "posts"
values:
layout: post
comments: true
-
scope:
path: ""
type: "pages"
values:
layout: page
comments: false# Plugins
plugins:
- jekyll-seo-tag
- jekyll-avatar
- jekyll-github-metadata
- jekyll-feed
```You may also want to see [Jekyll SEO Tag’s configuration](https://github.com/jekyll/jekyll-seo-tag).