geekspace 3.1.1 → 3.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 598361057f1c0ffc20c81ca54867c63aaa267175b92905a743fb7c22f1fbc89e
4
- data.tar.gz: 73b618eb97c117cc19c9086c76340f16b240ab000c4504d1224492dc1a431244
3
+ metadata.gz: 0e68b2f9892be4d95db133d100c529151afc64626f1d8f323fd834d8ff65a6ea
4
+ data.tar.gz: 90e17c8136662b165903c1858fa174beee5f941788d205d85be96def4b43d3a2
5
5
  SHA512:
6
- metadata.gz: 5b35caf5a20465a152791726096edad693b7be7abafd6abd8782690fcaa41b995c9dc33848c5042d7dd4ee439f160e61ea951e64fc9c61b3b95d74abc098e783
7
- data.tar.gz: ba47ce53d9c212d050328923e8b5f81e9243258c9392bf87f2e8b398e84c61da5b84a873f908ce4d614f2676cf94d720ff7f7f8f2ef44dc1467e046e663e712c
6
+ metadata.gz: 4b4502894462e086f7df082d0f0ccccb1669b86856db71cebcde8d6024887a6da47fbaa35e5b20f3f2b0d18449d5de97fbfea252e67e7c74b1d5cd8c0e7c2e50
7
+ data.tar.gz: e4808c4639ad971ba72fe4d367524ca55683ac1f45c670065fc7e43e9d0f8d0db3c0d326a4bbe1d0467503d11a31e0958dc4be8bbd733217156e80e3b4332164
data/README.md CHANGED
@@ -4,11 +4,30 @@
4
4
 
5
5
  This theme is build on top of https://github.com/heiswayi/thinkspace, with changes insired by a custom version of [CODE SPACE Tumblr Theme](https://github.com/doersino/Tumblr-Themes/tree/master/CODE%26SPACE)
6
6
 
7
- [![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) ![GENERATOR](https://img.shields.io/badge/made_with-jekyll-blue.svg) ![VERSION](https://img.shields.io/badge/current_version-3.1.1-green.svg) ![TRAVIS-CI](https://travis-ci.org/alessinossa/geekspace.svg?branch=master)
7
+ [![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) ![GENERATOR](https://img.shields.io/badge/made_with-jekyll-blue.svg) ![VERSION](https://img.shields.io/badge/current_version-3.1.2-green.svg) ![TRAVIS-CI](https://travis-ci.org/alessinossa/geekspace.svg?branch=master)
8
8
 
9
- [//]: # - **Demo:** https://alessionossa.github.io/geekspace/
9
+ **Demo:** https://alessionossa.github.io/geekspace/
10
10
 
11
- ![SCREENSHOT](https://i.imgur.com/1YS078k.png)
11
+ ![screen](https://i.imgur.com/s6hI5YU.png)
12
+
13
+ ## Usage
14
+
15
+ Hydeout is available as the **geekspace** Ruby Gem. Add gem "geekspace", "~> 3.1" to your Gemfile and run bundle install.
16
+
17
+ If you're installing on Github pages, you may also have to add remote_theme: alessionossa/geekspace to your _config.yml. [See the Github instructions for more details.](https://help.github.com/articles/adding-a-jekyll-theme-to-your-github-pages-site/)
18
+
19
+ Hydeout uses pagination, so if you have an index.md, you'll need to swap it with an index.html that uses the index layout:
20
+
21
+ ```
22
+ ---
23
+ layout: home
24
+ title: Home
25
+ ---
26
+ ```
27
+
28
+ You'll also need to add a setting to _config.yml telling Jekyll how many posts to include per page (e.g. paginate: 5).
29
+
30
+ See `_config.yml` and `_includes` folder in this repo to personalize your site.
12
31
 
13
32
  ## License
14
33
 
data/_includes/nav.html CHANGED
@@ -4,6 +4,7 @@
4
4
  <h1>
5
5
  <a href="{{ '/' | prepend: site.baseurl | prepend: site.url }}">{{ site.title }}</a>
6
6
  </h1>
7
+ <p>{{ site.description }}</p>
7
8
  {% if site.logo %}
8
9
  <img class="site-logo" src="{{ site.logo | prepend: site.baseurl}}">
9
10
  {% endif %}
data/_sass/_layout.scss CHANGED
@@ -97,6 +97,10 @@ header, footer {
97
97
  //background: $accent-color ;
98
98
  min-height: 128px;
99
99
  position: relative;
100
+
101
+ p {
102
+ padding-bottom: 0.5em;
103
+ }
100
104
  }
101
105
 
102
106
  .site-title h1 {
@@ -104,7 +108,7 @@ header, footer {
104
108
  font-size: 4.85em;
105
109
  background-color: transparent;
106
110
  line-height: 1em;
107
- padding: 0.27em 0 0.25em;
111
+ padding: 0.27em 0 0.1em;
108
112
  padding-right: 70px;
109
113
  margin: 0;
110
114
  position: relative;
@@ -7,7 +7,7 @@ $heading-font-family: $base-font-family;
7
7
  $base-font-size: 1em;
8
8
 
9
9
  // Line height
10
- $base-line-height: 1.5;
10
+ $base-line-height: 1.2;
11
11
  $heading-line-height: 1.2;
12
12
 
13
13
  // Other Sizes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: geekspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.1
4
+ version: 3.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alessio Nossa
@@ -104,16 +104,16 @@ dependencies:
104
104
  name: bundler
105
105
  requirement: !ruby/object:Gem::Requirement
106
106
  requirements:
107
- - - "~>"
107
+ - - ">="
108
108
  - !ruby/object:Gem::Version
109
- version: '2.1'
109
+ version: '1.1'
110
110
  type: :development
111
111
  prerelease: false
112
112
  version_requirements: !ruby/object:Gem::Requirement
113
113
  requirements:
114
- - - "~>"
114
+ - - ">="
115
115
  - !ruby/object:Gem::Version
116
- version: '2.1'
116
+ version: '1.1'
117
117
  description: This theme is build on top of https://github.com/heiswayi/thinkspace,
118
118
  with changes insired by a custom version of https://github.com/doersino/Tumblr-Themes/tree/master/CODE%26SPACE
119
119
  email: