jumbo-jekyll-theme 1.4.2.2 → 1.4.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/_config.yml +142 -0
  3. metadata +2 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f34567a860a9ae9da53b96c634925fbaa6db1c76
4
- data.tar.gz: 8af34888b87e1acece4ad83d600bfb22c7682cbe
3
+ metadata.gz: c13f05409efc36f84987059e7aa68f390fa65b8b
4
+ data.tar.gz: e67ced75ff5dcd671cd6cfb6ba8e80a0808fd3d8
5
5
  SHA512:
6
- metadata.gz: 4ee6fc37aba0fe13db6575b294d4e77fc30564ce9eb7802aec5e83cae451540f163503664c577c94796224549923feef9e77517626706be3855b3c26e599eb2b
7
- data.tar.gz: 75074f2753e41a0f4b17eb0680e69b6bdc524e96b82d65065c915be2c84fd1d361d7fb7e3dfe5294426c642d71bbad080e54c0885607bbbf66931e60eee41703
6
+ metadata.gz: 22684b7555558ac33c6860a6c7a4e5456188b2e37c82f7c01ea93e70e5e7a7c82b42a89262d070fc9951d025a6225f236aa946e5e24da84b90c29e839fc6442c
7
+ data.tar.gz: e1de4daabcbcc0c1a3104a185fa7578a216966549f288d825a717182f6445d32a6d438d9c9dc9f91d02a98c5c7bb165eb1d15174582a8b9bfee40cce1ff477c3
@@ -0,0 +1,142 @@
1
+ # Default Title of Site
2
+ title: Jumbo Jekyll Theme
3
+ # Description of the site used for default meta description
4
+ description: |-
5
+ The Jumbo Jekyll Theme is used across all Linaro static sites.
6
+ # Destination of the Jekyll site upon build of site.
7
+ destination: _site
8
+ # Default permalink for blog posts
9
+ permalink: /blog/:title/
10
+ # Jumbo Jekyll Theme
11
+ theme: jumbo-jekyll-theme
12
+ # Syntax highlighter
13
+ highlighter: rouge
14
+ # Markdown flavour used by Jekyll to parse markdown.
15
+ markdown: kramdown
16
+ # Default character encoding
17
+ encoding: utf-8
18
+ # Jekyll configuration for running the site in "Safe" mode.
19
+ safe: false
20
+ # Files Jekyll will ignore when building the static site.
21
+ exclude:
22
+ - Gemfile
23
+ - Gemfile.lock
24
+ - .gitignore
25
+ - .git
26
+ - .asset-cache
27
+ - _static-site
28
+ - .sass-cache
29
+
30
+ # Sass Configuration for the site styles
31
+ sass:
32
+ style: compressed
33
+ load_paths:
34
+ - assets/css
35
+
36
+ # Compress HTML using the jekyll-tidy plugin.
37
+ jekyll_tidy:
38
+ # Toggle compression of HTML
39
+ compress_html: true
40
+ # JS Path added to exclude to stop errors.
41
+ exclude: ["assets/**/*.js"]
42
+
43
+ # Permalink style to be used for paginating pages in pagination.html
44
+ paginate_path: /blog/:num/
45
+
46
+ # Jekyll Pagination V2 Configuration
47
+ pagination:
48
+ # Default pagination path for Jekyll Posts
49
+ # For other permalinks set in the front matter of the post index page
50
+ permalink: /blog/:num/
51
+ # Enabled or not?
52
+ enabled: true
53
+ # Home many posts to display by default
54
+ per_page: 5
55
+ # Number of pages to show either side of the current page i.e - 1, 2, {3}, 4, 5
56
+ trail:
57
+ before: 2
58
+ after: 2
59
+ # Reverse the order of paginated pages
60
+ sort_reverse: true
61
+ # Field to sort posts by when paginating
62
+ sort_field: 'date'
63
+
64
+ # Jekyll pagination v2 autopages configuration.
65
+ autopages:
66
+ enabled: false
67
+
68
+ # Jekyll_get plugin configuration. This will not be needed in all jekyll sites
69
+ # only those that are displaying news from the news db or listing Linaro members.
70
+ # jekyll_get:
71
+ # data: members
72
+ # json: 'https://github.com/Linaro/db'
73
+
74
+ # Jekyll defaults - used to set default front matter values to collections and posts
75
+ defaults:
76
+ # Set a default Social Media Image
77
+ - scope:
78
+ path: ""
79
+ values:
80
+ image: /assets/images/social-media-image.png
81
+
82
+ # Jekyll Assets setup
83
+ assets:
84
+ # Compress JS Assets - uses the uglifier
85
+ compression: true
86
+ gzip: true
87
+ # Autoprefixer default settings
88
+ autoprefixer:
89
+ browsers: ["last 2 versions","> 5%","IE 9"]
90
+ # These are the paths to look for assets
91
+ sources:
92
+ - assets/js/
93
+ - assets/images/
94
+ - assets/css/
95
+
96
+
97
+ # Jekyll relative links plugin settings
98
+ jekyll_relative_links:
99
+ process_all_collections: true
100
+ verbose: 1
101
+
102
+ plugins:
103
+ # - jekyll-minimagick
104
+ - jekyll-seo-tag
105
+ - jekyll-sitemap
106
+ - bootstrap-sass
107
+ - uglifier
108
+ - jekyll-assets
109
+ - jekyll-theme-assets
110
+ - jekyll-tidy
111
+ - jekyll-redirect-from
112
+ - autoprefixer-rails
113
+ - jekyll-paginate-v2
114
+
115
+ # Jekyll Mini Magick Settings
116
+ # All images will have a thumbnail (100x100), medium(300x300) and large(500x500)
117
+ # created upon building the static site.
118
+
119
+ mini_magick:
120
+ # Blog Image Presets
121
+ thumbnails:
122
+ source: assets/images/
123
+ destination: assets/images/thumbnails/
124
+ resize: "100x100"
125
+ thumbnail: "100x100>"
126
+ gravity: "Center"
127
+ extent: "100x100"
128
+ medium:
129
+ source: assets/images/
130
+ destination: assets/images/medium/
131
+ resize: "300x300"
132
+ thumbnail: "300x300>"
133
+ gravity: "Center"
134
+ extent: "300x300"
135
+ large:
136
+ source: assets/images/
137
+ destination: assets/images/large/
138
+ resize: "500x500"
139
+ thumbnail: "500x500>"
140
+ gravity: "Center"
141
+ extent: "500x500"
142
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jumbo-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2.2
4
+ version: 1.4.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Kirkby
@@ -271,6 +271,7 @@ extra_rdoc_files: []
271
271
  files:
272
272
  - LICENSE.txt
273
273
  - README.md
274
+ - _config.yml
274
275
  - _data/authors.yml
275
276
  - _data/footer.yml
276
277
  - _data/nav.yml