Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chrisanthropic/starving-artist-jekyll-theme
A portfolio theme for Jekyll for artists to display their work - http://chrisanthropic.github.io/starving-artist-jekyll-theme/
https://github.com/chrisanthropic/starving-artist-jekyll-theme
artist-website javascript-free jekyll jekyll-theme jekyll-themes zurb-foundation
Last synced: about 2 months ago
JSON representation
A portfolio theme for Jekyll for artists to display their work - http://chrisanthropic.github.io/starving-artist-jekyll-theme/
- Host: GitHub
- URL: https://github.com/chrisanthropic/starving-artist-jekyll-theme
- Owner: chrisanthropic
- License: unlicense
- Archived: true
- Created: 2016-08-18T16:16:05.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-03-27T04:35:44.000Z (over 4 years ago)
- Last Synced: 2024-09-25T02:33:34.632Z (about 2 months ago)
- Topics: artist-website, javascript-free, jekyll, jekyll-theme, jekyll-themes, zurb-foundation
- Language: CSS
- Homepage:
- Size: 173 MB
- Stars: 121
- Watchers: 6
- Forks: 58
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Starving Artist Jekyll Theme
![Starving Artist Jekyll Theme screenshot](screenshot.png)# Install as Gem Theme
Jekyll requires Ruby so make sure Ruby is installed before you begin.### Start a New Site
- Install Jekyll and Bundler
- `gem install bundler`
- Create a New Site
- `jekyl new mysite`
- Move into that directory
- `cd mysite`
- Install Required Gems
- `bundle install`
- Verify
- Run `jekyll serve`
- Browse to [http://localhost:4000](http://localhost:4000)
- Download Starving Artist Theme
- Replace the line `gem "minima"` with this:
- `gem "starving-artist-jekyll-theme"`
- Run `bundle install`
- Tell Jekyll to use Starving Artist Theme
- Open `_config.yml` and change the line `theme: minima` to this:
- `theme: starving-artist-jekyll-theme`
- Import the Starving Artist CSS
- Open your `css/style.css` and change the line `@import "minima;"` to this:
- `@import "starving-artist";`### Migrate an Existing Site
**NOTE** This requires you to be upgraded to at least Jekyll 3.2 which added support for themes.- Download Starving Artist Theme
- Replace the line `gem "minima"` with this:
- `gem "starving-artist-jekyll-theme"`
- Run `bundle install`
- Tell Jekyll to use Starving Artist Theme
- Open `_config.yml` and change the line `theme: minima` to this:
- `theme: starving-artist-jekyll-theme`
- Import the Starving Artist CSS
- Open your `css/style.css` and change the line `@import "minima;"` to this:
- `@import "starving-artist";`# Jekyll 2.x Method
Jekyll requires Ruby so make sure Ruby is installed before you begin.- Download this site
- `git clone https://github.com/chrisanthropic/starving-artist-jekyll-theme.git`
- Move into its directory
- `cd starving-artist-jekyll-theme`
- Install Required Gems
- `bundle install`
- Verify
- Run `jekyll serve`
- Browse to [http://localhost:4000](http://localhost:4000)