Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/victorvoid/space-jekyll-template
A simple spacemacs template on jekyll. https://victorvoid.github.io/space-jekyll-template/
https://github.com/victorvoid/space-jekyll-template
jekyll space-jekyll spacemacs theme
Last synced: about 16 hours ago
JSON representation
A simple spacemacs template on jekyll. https://victorvoid.github.io/space-jekyll-template/
- Host: GitHub
- URL: https://github.com/victorvoid/space-jekyll-template
- Owner: victorvoid
- License: other
- Created: 2016-09-12T16:49:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-01-03T07:25:39.000Z (about 1 year ago)
- Last Synced: 2025-01-25T07:05:55.693Z (8 days ago)
- Topics: jekyll, space-jekyll, spacemacs, theme
- Language: Stylus
- Homepage:
- Size: 31.1 MB
- Stars: 401
- Watchers: 14
- Forks: 321
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Space Jekyll
A simple and elegant Jekyll theme based on Spacemacs. The theme works well on mobile devices as well.
See a live demo [here](https://victorvoid.github.io/space-jekyll-template/).
![](https://github.com/victorvoid/space-jekyll-template/blob/master/screenshot.png?raw=true)
# Site/User Settings
customize your site in ``_config.yml``
```ruby
# Site settings
description: A blog about lorem ipsum
baseurl: "" # the subpath
url: "" # the base hostname &/|| protocol for your site# User settings
username: Lorem Ipsum
user_description: Lorem Developer
user_title: Lorem Ipsum
email: [email protected]
twitter_username: loremipsum
github_username: loremipsum
gplus_username: loremipsum
disqus_username: loremipsum```
See more about project and links in [_config.yml](./_config.yml)
## How to create a post ?
_posts create a file .md with structure:
```md
---
layout: post
title: "Lorem ipsum speak.."
date: 2016-09-13 01:00:00
image: '/assets/img/post-image.png'
description: 'about tech'
tags:
- lorem
- tech
categories:
- Lorem ipsum
twitter_text: 'How to speak with Lorem'
---
```## How to insert new links on menu navigation ?
![](https://github.com/victorvoid/space-jekyll-template/blob/master/src/img/menu.png)
You should open `_config.yml` and change/add `links` section:
```yaml
links:
section_1: # you can use any name
- title: home # show on menu
url: / #link
key_trigger: 1 # link shortcut and show on the left of the title
- title: my posts
url: /posts
key_trigger: 2
- title: series
url: /series
key_trigger: 3
- title: tags
url: /tags
key_trigger: 4
- title: about me
url: /about
key_trigger: 5
```Frontend Technologies
---------------------
* [Gulp](https://gulpjs.com/): The streaming build system.
* [Stylus](http://stylus-lang.com/): expressive, dynamic, robust CSS.
* [BrowserSync](https://www.browsersync.io/): Time-saving synchronised browser testing.
* [Rupture](https://github.com/jescalan/rupture): Simple media queries for stylus.
* [Kouto-Swiss](http://kouto-swiss.io/): A complete CSS framework for Stylus.
* [Jeet](http://jeet.gs/): A grid system for human.
* [Zepto.js](http://zeptojs.com/): The aerogel-weight jQuery-compatible JavaScript library.## How can I modify the theme ?
First, install [jekyll](https://jekyllrb.com/) and [node.js](https://nodejs.org/).
1. Fork the theme with your username, example: `charlie.github.io`
2. Clone repository to your computer
3. run `npm install`
4. run `gulp`
5. Be happy by modifying the files**Space Jekyll** uses the [Stylus](http://stylus-lang.com/) to process his css, then modifies the style of the theme in [this folder](https://github.com/victorvoid/space-jekyll-template/tree/master/src/styl).
You can go in the [variable.styl](https://github.com/victorvoid/space-jekyll-template/blob/master/src/styl/_variables.styl) and modify the colors.
## License
The MIT License (MIT)Copyright (c) 2016 Victor Igor
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.