Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ndrewtl/airspace-jekyll
A port of the Airspace theme by ThemeFisher to Jekyll.
https://github.com/ndrewtl/airspace-jekyll
jekyll template theme
Last synced: 3 months ago
JSON representation
A port of the Airspace theme by ThemeFisher to Jekyll.
- Host: GitHub
- URL: https://github.com/ndrewtl/airspace-jekyll
- Owner: ndrewtl
- License: other
- Created: 2016-09-11T03:22:32.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2022-07-09T01:59:15.000Z (over 2 years ago)
- Last Synced: 2024-08-02T05:12:13.944Z (6 months ago)
- Topics: jekyll, template, theme
- Language: CSS
- Homepage:
- Size: 4.55 MB
- Stars: 284
- Watchers: 9
- Forks: 5
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# _Airspace_ for Jekyll
![screenshot](screenshots/home.png "Description goes here")This Jekyll theme is a port of [ThemeFisher's](https://themefisher.com) [Airspace template](https://themefisher.com/products/airspace-free-bootstrap-website-template/), originally ported by [@ndrewtl](https://github.com/ndrewtl). It is released under ThemeFisher's [license](https://themefisher.com/license) , which requires attribution. Concern about the licnese please contact with [them](mailto:[email protected])
## Usage
To start your project, [fork this respository](https://github.com/ndrewtl/airspace-jekyll/fork), put in your content, and go!## Examples
Here are some projects that have used this Jekyll Theme:
* [BOYUAN Open Source 博辕开源](https://boyuanitsm.github.io)
* [Campus VC](https://mrchildneo.github.io/mrchildneo/)
* [Mãos de amar](https://www.maosdeamar.com.br/)
* [ATK Team](http://www.atksec.com/)
* [Coding Club](https://ourcodingclub.github.io/)
* [Dev Empathy Book Club](http://www.devempathybook.club/)
* [DKAN Open Data Catalog](http://getdkan.com) (modified version of this theme)## Steps for Setup:
### Make sure you have Ruby
First, make sure you have [Ruby](https://www.ruby-lang.org/en/) installed. You can confirm this by running `ruby -v` on the command line:
```sh
$ ruby -v
ruby [version number] (date) [your platform]
```If you get something like `"Error, command not found"` visit the link above and
install Ruby for your platform.### Make sure you have Bundler
Next, make sure you have [Bundler](https://bundler.io) installed. Just like
above, run `bundle -v` on the command line:```sh
$ bundle -v
bundle [version number]
```If you get `"Error, command not found"` run `gem install bundler` to install it
using RubyGems.### Run this repository
Clone the repository, and `cd` into it:
```sh
$ git clone https://github.com/ndrewtl/airspace-jekyll.git
$ cd airspace-jekyll
```Install dependencies locally:
```sh
$ bundle install --path vendor/bundle
```This should install a local copy of jekyll.
Now run the server:
```sh
$ ./vendor/bundle/ruby/#{YOUR_RUBY_VERSION}/bin/jekyll server
```