fundamental 0.1.2 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3c9ebb73fb2eb6b7690d0b3884ab6632ba5705e6
4
- data.tar.gz: 394e4f00de333a9cc3fd470b9089a43e2e124049
3
+ metadata.gz: c12ead8c5eeff92094c65763e4528ec2ea49a66b
4
+ data.tar.gz: c9bb461dc319e118d42e6940aca9c1f635264163
5
5
  SHA512:
6
- metadata.gz: 552d3752b12ab6927e1dd9d036b79833b6a1677114b79835d8d5e1377c530d53d3faebec51bd74f62fe77955c97102b5738cef88e52078717900291ad7051111
7
- data.tar.gz: 477d2dc7a8bdbd3905243214e9a73152f3fe0da96a96bf0561ba3129894b9ef1e88435ae5db3df5d6fcb0b3e12335559450b97e29d6a897607893f77b4bf9be4
6
+ metadata.gz: 7024333e97a03832b84edbd104047b228e2d8b88880e40507b4fe575ccb9f913e28bc8988b530bc497a987e53cbf03870b57e2336c81f88d5fa622d33e4e43a7
7
+ data.tar.gz: c54a21017a9ce945f01b45af37c158a8a64c0a0c69e99f5f02652cfa57fc7c9a4d9743a6736f70191b78e4ae4cbefd73339546352efcaa77d772563825f844b0
data/README.md CHANGED
@@ -48,7 +48,7 @@ After installing you should have a `config.yml` file in your base directory. Cop
48
48
  Jekyll gives you an `index.md` file as your homepage. Copy this into it to get started, the front matter will be explained below: **!! Something to note**, Fundamental does not currently support categories (they're coming!). The default page Jekyll produces will break breadcrumbs (for now).
49
49
 
50
50
  ---
51
- layout: blog
51
+ layout: home
52
52
  title: Home
53
53
  menu: true
54
54
  order: 1
@@ -147,12 +147,10 @@ The first file to customise would be `_variables.scss`, you're probably best cop
147
147
  - `$accent: #4845DF;` - the purple colour
148
148
  - `$tertiary: lighten($accent, 5%);` - lighter version of accent
149
149
 
150
- There is one breakpoint: `$break: 600px;`
151
-
152
150
  `$font` uses a system font stack. Change this to whatever you wish.
153
151
  `$font: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;`
154
152
 
155
-
153
+ TODO: Separate palette from other variables. For easier custom colours.
156
154
 
157
155
  ## Contributing
158
156
 
@@ -1,3 +1,3 @@
1
1
  <footer>
2
- <p>Fundamental was built with &hearts; by <a href="http://theomjones.com">Theo</a>. For everyone.</p>
2
+ <p>{{site.footer.content}}{% if site.footer.year == true %} {{site.footer.separator}} {{ 'now' | date: '%Y' }}{% endif %}</p>
3
3
  </footer>
File without changes
@@ -5,7 +5,7 @@ layout: default
5
5
  <h1>All Posts</h1>
6
6
  <ul>
7
7
  {% for post in site.posts %}
8
- <li><a href="{{ site.baseurl }}/{{ post.url }}">{{ post.title }}</a>
8
+ <li><a href="{{ post.url | relative_url }}">{{ post.title }}</a>
9
9
  <span> - {{ post.date | date_to_string }}</span>
10
10
  </li>
11
11
  {% endfor %}
data/_sass/_globals.scss CHANGED
@@ -1,3 +1,7 @@
1
+ html {
2
+ display: flex; //IE 11 Fix for sticky footer
3
+ flex-direction: column;
4
+ }
1
5
  body {
2
6
  font-family: $font;
3
7
  font-size: 1.2rem;
data/_sass/_header.scss CHANGED
@@ -3,7 +3,6 @@ header {
3
3
  max-width: 1200px;
4
4
  margin: 0 auto;
5
5
  display: flex;
6
- justify-content: flex-end;
7
6
  align-content: center;
8
7
  flex-wrap: wrap;
9
8
  @media screen and (max-width: $break) {
@@ -32,6 +31,7 @@ header {
32
31
  margin-left: 50px;
33
32
  @media screen and (max-width: 400px) {
34
33
  margin-left: 20px;
34
+ margin-top: 5px;
35
35
  }
36
36
  a {
37
37
  text-decoration: none;
data/_sass/_post.scss CHANGED
@@ -14,4 +14,7 @@
14
14
  .info {
15
15
  margin-bottom: 60px;
16
16
  margin-top: -45px;
17
+ @media screen and (max-width: $break) {
18
+ margin-bottom: 40px;
19
+ }
17
20
  }
@@ -11,6 +11,9 @@ h1 {
11
11
  font-size: 3rem;
12
12
  margin-top: 5px;
13
13
  }
14
+ @media screen and (max-width: 320px) {
15
+ font-size: 2.5rem;
16
+ }
14
17
  }
15
18
  h2 {
16
19
  font-size: 3rem;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fundamental
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Theo M Jones
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-16 00:00:00.000000000 Z
11
+ date: 2017-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -97,8 +97,8 @@ files:
97
97
  - _includes/item.html
98
98
  - _includes/tag-cloud.html
99
99
  - _layouts/archive.html
100
- - _layouts/blog.html
101
100
  - _layouts/default.html
101
+ - _layouts/home.html
102
102
  - _layouts/month.html
103
103
  - _layouts/page.html
104
104
  - _layouts/post.html
@@ -116,7 +116,7 @@ files:
116
116
  - _sass/_variables.scss
117
117
  - assets/images/logo.svg
118
118
  - assets/main.scss
119
- homepage: https://theomjones.com/fundamental
119
+ homepage: http://theomjones.com/fundamental
120
120
  licenses:
121
121
  - MIT
122
122
  metadata: {}
@@ -139,5 +139,5 @@ rubyforge_project:
139
139
  rubygems_version: 2.6.11
140
140
  signing_key:
141
141
  specification_version: 4
142
- summary: A totally minimal Jekyll theme. Just the fundamentals.
142
+ summary: A lightweight, minimal Jekyll theme.
143
143
  test_files: []