dedovic-2021 0.2.0 → 0.3.0

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
  SHA256:
3
- metadata.gz: a6235eeb7b663edc3429e715024eae4d229c3f8f2cc635c6231bb2b95ee95a97
4
- data.tar.gz: 0a6c20d2da6cebc087422eef31c3a6ecd3b7112f0aa5541db3d21fcc502554a5
3
+ metadata.gz: 1dc5313b2c51010f592b6373bce4d159dfd16f1cf4b406ca61f36975308e714e
4
+ data.tar.gz: 80be1c72a224dc33ece8b722a8964f21469571b98ad4b73b8724f43c0d1d1543
5
5
  SHA512:
6
- metadata.gz: 66fe19ce0cbdbd87e205a55969ba056fc4ec95fe8ae5f091791442a8a1739d80ceeb99dc0351851f9a15d4af87c6d167a48298432579ad7f85071a43b325c972
7
- data.tar.gz: c55641ac710aa788dea62cf7f573f51ac737a267f0a5d7388672b94a382f94b7d937b149032b016fc3b4bc8f68c4db9c86f784e6a50d6319b440aa7e9cd6ddcd
6
+ metadata.gz: 764acaec6ed4defa6c314ea333206ffbc9dcab7f3bfa2577f2fb87015dea6ecc4b6ed6b9bc7bbb3dd13b42d31ae1e2ebb80d5cf2c3cdb879dd404cf72cb14f03
7
+ data.tar.gz: 9ad4d2b0ce2f368cc597b4817f982bce1cc634b44d310a9a6d20ff2943d2b19018eefa3ccc8d3c633bd980155c37096c8675adc0142e024b6cb267ebf130b4b5
data/_config.yml ADDED
@@ -0,0 +1,36 @@
1
+
2
+ exclude:
3
+ - README.md
4
+ - CNAME
5
+ - .jekyll-cache
6
+
7
+ author: mhipley
8
+
9
+ sass:
10
+ style: compressed
11
+ permalink: pretty
12
+ excerpt_separator: <!-- more -->
13
+
14
+ defaults:
15
+ -
16
+ scope:
17
+ path: ""
18
+ type: "posts"
19
+ values:
20
+ layout: post # Set the default layout for posts
21
+ -
22
+ scope:
23
+ path: ""
24
+ type: "pages"
25
+ values:
26
+ layout: page # Set the default layout for pages
27
+
28
+ encoding: utf-8
29
+ lang: en-GB
30
+ title: "Stevan Dedovic personal site"
31
+ description: "Lorem ipsum"
32
+ url: ""
33
+ baseurl: ""
34
+ repo: ""
35
+ email: ""
36
+ css_inline: true
data/_includes/head.html CHANGED
@@ -27,7 +27,11 @@
27
27
  <meta property="og:description" content="" />
28
28
  <meta property="og:site_name" content="" />
29
29
 
30
- <link rel="stylesheet" href="/css/styles.css">
30
+ {% if site.css_inline == true %}
31
+ {% include siteStyles.html %}
32
+ {% else %}
33
+ <link rel="stylesheet" href="{{ "/assets/styles.css" | relative_url }}">
34
+ {% endif %}
31
35
  <script src="/js/scripts.js"></script>
32
36
 
33
37
  </head>
@@ -0,0 +1,5 @@
1
+
2
+ {% capture styles %}
3
+ @import "main";
4
+ {% endcapture %}
5
+ <style>{{ styles | scssify | strip_newlines }}</style>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dedovic-2021
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martha Hipley
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-05 00:00:00.000000000 Z
11
+ date: 2021-10-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -33,10 +33,12 @@ extra_rdoc_files: []
33
33
  files:
34
34
  - LICENSE.txt
35
35
  - README.md
36
+ - _config.yml
36
37
  - _includes/codeHeader.html
37
38
  - _includes/footer.html
38
39
  - _includes/head.html
39
40
  - _includes/sidebar.html
41
+ - _includes/siteStyles.html
40
42
  - _layouts/about.html
41
43
  - _layouts/art.html
42
44
  - _layouts/default.html