Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/henrythemes/hello-jekyll-theme
Hello, Jekyll! Theme - Get Started w/ GitHub Pages (Jekyll) in 60 Seconds
https://github.com/henrythemes/hello-jekyll-theme
Last synced: 2 months ago
JSON representation
Hello, Jekyll! Theme - Get Started w/ GitHub Pages (Jekyll) in 60 Seconds
- Host: GitHub
- URL: https://github.com/henrythemes/hello-jekyll-theme
- Owner: henrythemes
- Created: 2016-09-19T18:45:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-04T13:37:46.000Z (about 8 years ago)
- Last Synced: 2024-08-02T09:26:06.535Z (5 months ago)
- Language: HTML
- Homepage:
- Size: 5.86 KB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-jekyll-themes - henrythemes/hello-jekyll-theme
README
# Hello, Jekyll! Theme - Get Started in 60 Seconds
Setup Jekyll with GitHub Pages in 60 Seconds
### Step 1 - Create the Jekyll Configuration / Settings File
Add your site title e.g. Your Site Title
`_config.yml`:
```
title: Your Site Title
```### Step 2 - Create the Index Page
Add your index (front) page with a page title e.g. Welcome and using the default layout (to be created in Step 3):
`index.md`:
```
---
title: Welcome
layout: default
---Hello, Jekyll!
```### Step 3 - Create the Master Layout
`_layouts/default.html`
```
{{ page.title }} - {{site.title}}{{ content }}
```
That's it. Ready for serving.
Go on GitHub in your repos **Settings** tab to the **GitHub Pages** sections and pick **Use the master branch** in **Select Source**.
Save. Enjoy. Happy Jekylling!### Live Demo
See a live demo @ [`henrythemes.github.io/hello-jekyll-theme` »](https://henrythemes.github.io/hello-jekyll-theme)
### Bonus - Q: Can I Use Ready-Made Styles / Designs / Themes? A: Hello, Minima! Theme - Get Started in 60 Seconds, Reloaded
It's up to you to add your styles. Be bold.
To use ready-made styles / designs / themes see the [**Hello, Minima! Theme - Get Started in 60 Seconds**](https://github.com/henrythemes/hello-minima-theme) repo.### More Themes
See the [Dr. Jekyll's Themes](https://drjekyllthemes.github.io) directory.
## Meta
#### License
The Hello, Jekyll! theme is dedicated to the public domain.
Use it as you please with no restrictions whatsoever.#### Questions? Comments?
Post them to the [jekyll talk forum](http://talk.jekyllrb.com). Thanks!