devme-jekyll-theme 0.1.0

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.
Files changed (108) hide show
  1. checksums.yaml +7 -0
  2. data/.gemspec +9 -0
  3. data/.gitignore +8 -0
  4. data/Gemfile +30 -0
  5. data/Gemfile.lock +255 -0
  6. data/README.md +2 -0
  7. data/_config.yml +57 -0
  8. data/_includes/head.html +7 -0
  9. data/_includes/scripts.html +2 -0
  10. data/_layouts/default.html +12 -0
  11. data/_sass/bootstrap-jekyll-theme.scss +4 -0
  12. data/_sass/bootstrap/scss/_alert.scss +51 -0
  13. data/_sass/bootstrap/scss/_badge.scss +54 -0
  14. data/_sass/bootstrap/scss/_breadcrumb.scss +42 -0
  15. data/_sass/bootstrap/scss/_button-group.scss +163 -0
  16. data/_sass/bootstrap/scss/_buttons.scss +139 -0
  17. data/_sass/bootstrap/scss/_card.scss +278 -0
  18. data/_sass/bootstrap/scss/_carousel.scss +197 -0
  19. data/_sass/bootstrap/scss/_close.scss +41 -0
  20. data/_sass/bootstrap/scss/_code.scss +48 -0
  21. data/_sass/bootstrap/scss/_custom-forms.scss +521 -0
  22. data/_sass/bootstrap/scss/_dropdown.scss +191 -0
  23. data/_sass/bootstrap/scss/_forms.scss +338 -0
  24. data/_sass/bootstrap/scss/_functions.scss +134 -0
  25. data/_sass/bootstrap/scss/_grid.scss +69 -0
  26. data/_sass/bootstrap/scss/_images.scss +42 -0
  27. data/_sass/bootstrap/scss/_input-group.scss +191 -0
  28. data/_sass/bootstrap/scss/_jumbotron.scss +17 -0
  29. data/_sass/bootstrap/scss/_list-group.scss +158 -0
  30. data/_sass/bootstrap/scss/_media.scss +8 -0
  31. data/_sass/bootstrap/scss/_mixins.scss +47 -0
  32. data/_sass/bootstrap/scss/_modal.scss +239 -0
  33. data/_sass/bootstrap/scss/_nav.scss +120 -0
  34. data/_sass/bootstrap/scss/_navbar.scss +324 -0
  35. data/_sass/bootstrap/scss/_pagination.scss +73 -0
  36. data/_sass/bootstrap/scss/_popover.scss +170 -0
  37. data/_sass/bootstrap/scss/_print.scss +141 -0
  38. data/_sass/bootstrap/scss/_progress.scss +46 -0
  39. data/_sass/bootstrap/scss/_reboot.scss +482 -0
  40. data/_sass/bootstrap/scss/_root.scss +20 -0
  41. data/_sass/bootstrap/scss/_spinners.scss +55 -0
  42. data/_sass/bootstrap/scss/_tables.scss +185 -0
  43. data/_sass/bootstrap/scss/_toasts.scss +44 -0
  44. data/_sass/bootstrap/scss/_tooltip.scss +115 -0
  45. data/_sass/bootstrap/scss/_transitions.scss +20 -0
  46. data/_sass/bootstrap/scss/_type.scss +125 -0
  47. data/_sass/bootstrap/scss/_utilities.scss +17 -0
  48. data/_sass/bootstrap/scss/_variables.scss +1143 -0
  49. data/_sass/bootstrap/scss/bootstrap-grid.scss +29 -0
  50. data/_sass/bootstrap/scss/bootstrap-reboot.scss +12 -0
  51. data/_sass/bootstrap/scss/bootstrap.scss +44 -0
  52. data/_sass/bootstrap/scss/mixins/_alert.scss +13 -0
  53. data/_sass/bootstrap/scss/mixins/_background-variant.scss +22 -0
  54. data/_sass/bootstrap/scss/mixins/_badge.scss +17 -0
  55. data/_sass/bootstrap/scss/mixins/_border-radius.scss +63 -0
  56. data/_sass/bootstrap/scss/mixins/_box-shadow.scss +20 -0
  57. data/_sass/bootstrap/scss/mixins/_breakpoints.scss +123 -0
  58. data/_sass/bootstrap/scss/mixins/_buttons.scss +110 -0
  59. data/_sass/bootstrap/scss/mixins/_caret.scss +62 -0
  60. data/_sass/bootstrap/scss/mixins/_clearfix.scss +7 -0
  61. data/_sass/bootstrap/scss/mixins/_deprecate.scss +10 -0
  62. data/_sass/bootstrap/scss/mixins/_float.scss +14 -0
  63. data/_sass/bootstrap/scss/mixins/_forms.scss +177 -0
  64. data/_sass/bootstrap/scss/mixins/_gradients.scss +45 -0
  65. data/_sass/bootstrap/scss/mixins/_grid-framework.scss +71 -0
  66. data/_sass/bootstrap/scss/mixins/_grid.scss +69 -0
  67. data/_sass/bootstrap/scss/mixins/_hover.scss +37 -0
  68. data/_sass/bootstrap/scss/mixins/_image.scss +36 -0
  69. data/_sass/bootstrap/scss/mixins/_list-group.scss +21 -0
  70. data/_sass/bootstrap/scss/mixins/_lists.scss +7 -0
  71. data/_sass/bootstrap/scss/mixins/_nav-divider.scss +11 -0
  72. data/_sass/bootstrap/scss/mixins/_pagination.scss +22 -0
  73. data/_sass/bootstrap/scss/mixins/_reset-text.scss +17 -0
  74. data/_sass/bootstrap/scss/mixins/_resize.scss +6 -0
  75. data/_sass/bootstrap/scss/mixins/_screen-reader.scss +34 -0
  76. data/_sass/bootstrap/scss/mixins/_size.scss +7 -0
  77. data/_sass/bootstrap/scss/mixins/_table-row.scss +39 -0
  78. data/_sass/bootstrap/scss/mixins/_text-emphasis.scss +17 -0
  79. data/_sass/bootstrap/scss/mixins/_text-hide.scss +11 -0
  80. data/_sass/bootstrap/scss/mixins/_text-truncate.scss +8 -0
  81. data/_sass/bootstrap/scss/mixins/_transition.scss +16 -0
  82. data/_sass/bootstrap/scss/mixins/_visibility.scss +8 -0
  83. data/_sass/bootstrap/scss/utilities/_align.scss +8 -0
  84. data/_sass/bootstrap/scss/utilities/_background.scss +19 -0
  85. data/_sass/bootstrap/scss/utilities/_borders.scss +75 -0
  86. data/_sass/bootstrap/scss/utilities/_clearfix.scss +3 -0
  87. data/_sass/bootstrap/scss/utilities/_display.scss +26 -0
  88. data/_sass/bootstrap/scss/utilities/_embed.scss +39 -0
  89. data/_sass/bootstrap/scss/utilities/_flex.scss +51 -0
  90. data/_sass/bootstrap/scss/utilities/_float.scss +11 -0
  91. data/_sass/bootstrap/scss/utilities/_overflow.scss +5 -0
  92. data/_sass/bootstrap/scss/utilities/_position.scss +32 -0
  93. data/_sass/bootstrap/scss/utilities/_screenreaders.scss +11 -0
  94. data/_sass/bootstrap/scss/utilities/_shadows.scss +6 -0
  95. data/_sass/bootstrap/scss/utilities/_sizing.scss +20 -0
  96. data/_sass/bootstrap/scss/utilities/_spacing.scss +73 -0
  97. data/_sass/bootstrap/scss/utilities/_stretched-link.scss +19 -0
  98. data/_sass/bootstrap/scss/utilities/_text.scss +72 -0
  99. data/_sass/bootstrap/scss/utilities/_visibility.scss +13 -0
  100. data/_sass/bootstrap/scss/vendor/_rfs.scss +204 -0
  101. data/assets/css/style.scss +3 -0
  102. data/assets/js/bootstrap/dist/js/bootstrap.bundle.min.js +7 -0
  103. data/assets/js/jquery/dist/jquery.min.js +2 -0
  104. data/gulpfile.js +46 -0
  105. data/index.html +5 -0
  106. data/package-lock.json +4258 -0
  107. data/package.json +11 -0
  108. metadata +147 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c71459c36cdd3986e7a621548a10d8f1f81915c6d3e542e672e31f7f5d9a36f0
4
+ data.tar.gz: 39a334280a27f3158c5996f3d83260ccc44b3bd160702adf425c9dba93b38800
5
+ SHA512:
6
+ metadata.gz: 452e59768297e7b7e5f489df15a065bce420d1ac0565e2922093ef774d2c5066bbe543ca1abef51e6a1e2336a1dda7dabcfd926c16d4c357cbf2880ff1e91cbf
7
+ data.tar.gz: c97dbe6626b3a7d3bb60113f7c354a236debf9fe85266400cb166d4f854a05f9bf182e05718286aa1a0c1299e1efa4bb35de2029f8b5fbf8b8c18eb911b1b595
data/.gemspec ADDED
@@ -0,0 +1,9 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'devme-jekyll-theme'
3
+ s.version = '0.1.0'
4
+ s.summary = "Bootstrap Jekyll Theme"
5
+ s.authors = "Theming is Prose"
6
+ s.email = 'themingisprose@gmail.com'
7
+ s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
8
+ s.homepage = "https://github.com/themingisprose/bootstrap-jekyll-theme"
9
+ end
data/.gitignore ADDED
@@ -0,0 +1,8 @@
1
+ _site
2
+ .sass-cache
3
+ .jekyll-cache
4
+ .jekyll-metadata
5
+ vendor
6
+ node_modules
7
+ !/_sass/bootstrap/scss/vendor
8
+ *.gem
data/Gemfile ADDED
@@ -0,0 +1,30 @@
1
+ source "https://rubygems.org"
2
+ # Hello! This is where you manage which Jekyll version is used to run.
3
+ # When you want to use a different version, change it below, save the
4
+ # file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
5
+ #
6
+ # bundle exec jekyll serve
7
+ #
8
+ # This will help ensure the proper Jekyll version is running.
9
+ # Happy Jekylling!
10
+ # gem "jekyll", "~> 4.0.0"
11
+ # This is the default theme for new Jekyll sites. You may change this to anything you like.
12
+ # gem "minima", "~> 2.5"
13
+ # If you want to use GitHub Pages, remove the "gem "jekyll"" above and
14
+ # uncomment the line below. To upgrade, run `bundle update github-pages`.
15
+ gem "github-pages", "~> 204", group: :jekyll_plugins
16
+ # If you have any plugins, put them here!
17
+ group :jekyll_plugins do
18
+ gem "jekyll-feed", "~> 0.12"
19
+ end
20
+
21
+ # Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
22
+ # and associated library.
23
+ install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
24
+ gem "tzinfo", "~> 1.2"
25
+ gem "tzinfo-data"
26
+ end
27
+
28
+ # Performance-booster for watching directories on Windows
29
+ gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform?
30
+
data/Gemfile.lock ADDED
@@ -0,0 +1,255 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ activesupport (6.0.2.2)
5
+ concurrent-ruby (~> 1.0, >= 1.0.2)
6
+ i18n (>= 0.7, < 2)
7
+ minitest (~> 5.1)
8
+ tzinfo (~> 1.1)
9
+ zeitwerk (~> 2.2)
10
+ addressable (2.7.0)
11
+ public_suffix (>= 2.0.2, < 5.0)
12
+ coffee-script (2.4.1)
13
+ coffee-script-source
14
+ execjs
15
+ coffee-script-source (1.11.1)
16
+ colorator (1.1.0)
17
+ commonmarker (0.17.13)
18
+ ruby-enum (~> 0.5)
19
+ concurrent-ruby (1.1.6)
20
+ dnsruby (1.61.3)
21
+ addressable (~> 2.5)
22
+ em-websocket (0.5.1)
23
+ eventmachine (>= 0.12.9)
24
+ http_parser.rb (~> 0.6.0)
25
+ ethon (0.12.0)
26
+ ffi (>= 1.3.0)
27
+ eventmachine (1.2.7)
28
+ execjs (2.7.0)
29
+ faraday (1.0.1)
30
+ multipart-post (>= 1.2, < 3)
31
+ ffi (1.12.2)
32
+ forwardable-extended (2.6.0)
33
+ gemoji (3.0.1)
34
+ github-pages (204)
35
+ github-pages-health-check (= 1.16.1)
36
+ jekyll (= 3.8.5)
37
+ jekyll-avatar (= 0.7.0)
38
+ jekyll-coffeescript (= 1.1.1)
39
+ jekyll-commonmark-ghpages (= 0.1.6)
40
+ jekyll-default-layout (= 0.1.4)
41
+ jekyll-feed (= 0.13.0)
42
+ jekyll-gist (= 1.5.0)
43
+ jekyll-github-metadata (= 2.13.0)
44
+ jekyll-mentions (= 1.5.1)
45
+ jekyll-optional-front-matter (= 0.3.2)
46
+ jekyll-paginate (= 1.1.0)
47
+ jekyll-readme-index (= 0.3.0)
48
+ jekyll-redirect-from (= 0.15.0)
49
+ jekyll-relative-links (= 0.6.1)
50
+ jekyll-remote-theme (= 0.4.1)
51
+ jekyll-sass-converter (= 1.5.2)
52
+ jekyll-seo-tag (= 2.6.1)
53
+ jekyll-sitemap (= 1.4.0)
54
+ jekyll-swiss (= 1.0.0)
55
+ jekyll-theme-architect (= 0.1.1)
56
+ jekyll-theme-cayman (= 0.1.1)
57
+ jekyll-theme-dinky (= 0.1.1)
58
+ jekyll-theme-hacker (= 0.1.1)
59
+ jekyll-theme-leap-day (= 0.1.1)
60
+ jekyll-theme-merlot (= 0.1.1)
61
+ jekyll-theme-midnight (= 0.1.1)
62
+ jekyll-theme-minimal (= 0.1.1)
63
+ jekyll-theme-modernist (= 0.1.1)
64
+ jekyll-theme-primer (= 0.5.4)
65
+ jekyll-theme-slate (= 0.1.1)
66
+ jekyll-theme-tactile (= 0.1.1)
67
+ jekyll-theme-time-machine (= 0.1.1)
68
+ jekyll-titles-from-headings (= 0.5.3)
69
+ jemoji (= 0.11.1)
70
+ kramdown (= 1.17.0)
71
+ liquid (= 4.0.3)
72
+ mercenary (~> 0.3)
73
+ minima (= 2.5.1)
74
+ nokogiri (>= 1.10.4, < 2.0)
75
+ rouge (= 3.13.0)
76
+ terminal-table (~> 1.4)
77
+ github-pages-health-check (1.16.1)
78
+ addressable (~> 2.3)
79
+ dnsruby (~> 1.60)
80
+ octokit (~> 4.0)
81
+ public_suffix (~> 3.0)
82
+ typhoeus (~> 1.3)
83
+ html-pipeline (2.12.3)
84
+ activesupport (>= 2)
85
+ nokogiri (>= 1.4)
86
+ http_parser.rb (0.6.0)
87
+ i18n (0.9.5)
88
+ concurrent-ruby (~> 1.0)
89
+ jekyll (3.8.5)
90
+ addressable (~> 2.4)
91
+ colorator (~> 1.0)
92
+ em-websocket (~> 0.5)
93
+ i18n (~> 0.7)
94
+ jekyll-sass-converter (~> 1.0)
95
+ jekyll-watch (~> 2.0)
96
+ kramdown (~> 1.14)
97
+ liquid (~> 4.0)
98
+ mercenary (~> 0.3.3)
99
+ pathutil (~> 0.9)
100
+ rouge (>= 1.7, < 4)
101
+ safe_yaml (~> 1.0)
102
+ jekyll-avatar (0.7.0)
103
+ jekyll (>= 3.0, < 5.0)
104
+ jekyll-coffeescript (1.1.1)
105
+ coffee-script (~> 2.2)
106
+ coffee-script-source (~> 1.11.1)
107
+ jekyll-commonmark (1.3.1)
108
+ commonmarker (~> 0.14)
109
+ jekyll (>= 3.7, < 5.0)
110
+ jekyll-commonmark-ghpages (0.1.6)
111
+ commonmarker (~> 0.17.6)
112
+ jekyll-commonmark (~> 1.2)
113
+ rouge (>= 2.0, < 4.0)
114
+ jekyll-default-layout (0.1.4)
115
+ jekyll (~> 3.0)
116
+ jekyll-feed (0.13.0)
117
+ jekyll (>= 3.7, < 5.0)
118
+ jekyll-gist (1.5.0)
119
+ octokit (~> 4.2)
120
+ jekyll-github-metadata (2.13.0)
121
+ jekyll (>= 3.4, < 5.0)
122
+ octokit (~> 4.0, != 4.4.0)
123
+ jekyll-mentions (1.5.1)
124
+ html-pipeline (~> 2.3)
125
+ jekyll (>= 3.7, < 5.0)
126
+ jekyll-optional-front-matter (0.3.2)
127
+ jekyll (>= 3.0, < 5.0)
128
+ jekyll-paginate (1.1.0)
129
+ jekyll-readme-index (0.3.0)
130
+ jekyll (>= 3.0, < 5.0)
131
+ jekyll-redirect-from (0.15.0)
132
+ jekyll (>= 3.3, < 5.0)
133
+ jekyll-relative-links (0.6.1)
134
+ jekyll (>= 3.3, < 5.0)
135
+ jekyll-remote-theme (0.4.1)
136
+ addressable (~> 2.0)
137
+ jekyll (>= 3.5, < 5.0)
138
+ rubyzip (>= 1.3.0)
139
+ jekyll-sass-converter (1.5.2)
140
+ sass (~> 3.4)
141
+ jekyll-seo-tag (2.6.1)
142
+ jekyll (>= 3.3, < 5.0)
143
+ jekyll-sitemap (1.4.0)
144
+ jekyll (>= 3.7, < 5.0)
145
+ jekyll-swiss (1.0.0)
146
+ jekyll-theme-architect (0.1.1)
147
+ jekyll (~> 3.5)
148
+ jekyll-seo-tag (~> 2.0)
149
+ jekyll-theme-cayman (0.1.1)
150
+ jekyll (~> 3.5)
151
+ jekyll-seo-tag (~> 2.0)
152
+ jekyll-theme-dinky (0.1.1)
153
+ jekyll (~> 3.5)
154
+ jekyll-seo-tag (~> 2.0)
155
+ jekyll-theme-hacker (0.1.1)
156
+ jekyll (~> 3.5)
157
+ jekyll-seo-tag (~> 2.0)
158
+ jekyll-theme-leap-day (0.1.1)
159
+ jekyll (~> 3.5)
160
+ jekyll-seo-tag (~> 2.0)
161
+ jekyll-theme-merlot (0.1.1)
162
+ jekyll (~> 3.5)
163
+ jekyll-seo-tag (~> 2.0)
164
+ jekyll-theme-midnight (0.1.1)
165
+ jekyll (~> 3.5)
166
+ jekyll-seo-tag (~> 2.0)
167
+ jekyll-theme-minimal (0.1.1)
168
+ jekyll (~> 3.5)
169
+ jekyll-seo-tag (~> 2.0)
170
+ jekyll-theme-modernist (0.1.1)
171
+ jekyll (~> 3.5)
172
+ jekyll-seo-tag (~> 2.0)
173
+ jekyll-theme-primer (0.5.4)
174
+ jekyll (> 3.5, < 5.0)
175
+ jekyll-github-metadata (~> 2.9)
176
+ jekyll-seo-tag (~> 2.0)
177
+ jekyll-theme-slate (0.1.1)
178
+ jekyll (~> 3.5)
179
+ jekyll-seo-tag (~> 2.0)
180
+ jekyll-theme-tactile (0.1.1)
181
+ jekyll (~> 3.5)
182
+ jekyll-seo-tag (~> 2.0)
183
+ jekyll-theme-time-machine (0.1.1)
184
+ jekyll (~> 3.5)
185
+ jekyll-seo-tag (~> 2.0)
186
+ jekyll-titles-from-headings (0.5.3)
187
+ jekyll (>= 3.3, < 5.0)
188
+ jekyll-watch (2.2.1)
189
+ listen (~> 3.0)
190
+ jemoji (0.11.1)
191
+ gemoji (~> 3.0)
192
+ html-pipeline (~> 2.2)
193
+ jekyll (>= 3.0, < 5.0)
194
+ kramdown (1.17.0)
195
+ liquid (4.0.3)
196
+ listen (3.2.1)
197
+ rb-fsevent (~> 0.10, >= 0.10.3)
198
+ rb-inotify (~> 0.9, >= 0.9.10)
199
+ mercenary (0.3.6)
200
+ mini_portile2 (2.4.0)
201
+ minima (2.5.1)
202
+ jekyll (>= 3.5, < 5.0)
203
+ jekyll-feed (~> 0.9)
204
+ jekyll-seo-tag (~> 2.1)
205
+ minitest (5.14.0)
206
+ multipart-post (2.1.1)
207
+ nokogiri (1.10.9)
208
+ mini_portile2 (~> 2.4.0)
209
+ octokit (4.18.0)
210
+ faraday (>= 0.9)
211
+ sawyer (~> 0.8.0, >= 0.5.3)
212
+ pathutil (0.16.2)
213
+ forwardable-extended (~> 2.6)
214
+ public_suffix (3.1.1)
215
+ rb-fsevent (0.10.4)
216
+ rb-inotify (0.10.1)
217
+ ffi (~> 1.0)
218
+ rouge (3.13.0)
219
+ ruby-enum (0.8.0)
220
+ i18n
221
+ rubyzip (2.3.0)
222
+ safe_yaml (1.0.5)
223
+ sass (3.7.4)
224
+ sass-listen (~> 4.0.0)
225
+ sass-listen (4.0.0)
226
+ rb-fsevent (~> 0.9, >= 0.9.4)
227
+ rb-inotify (~> 0.9, >= 0.9.7)
228
+ sawyer (0.8.2)
229
+ addressable (>= 2.3.5)
230
+ faraday (> 0.8, < 2.0)
231
+ terminal-table (1.8.0)
232
+ unicode-display_width (~> 1.1, >= 1.1.1)
233
+ thread_safe (0.3.6)
234
+ typhoeus (1.3.1)
235
+ ethon (>= 0.9.0)
236
+ tzinfo (1.2.7)
237
+ thread_safe (~> 0.1)
238
+ tzinfo-data (1.2020.1)
239
+ tzinfo (>= 1.0.0)
240
+ unicode-display_width (1.7.0)
241
+ wdm (0.1.1)
242
+ zeitwerk (2.3.0)
243
+
244
+ PLATFORMS
245
+ ruby
246
+
247
+ DEPENDENCIES
248
+ github-pages (~> 204)
249
+ jekyll-feed (~> 0.12)
250
+ tzinfo (~> 1.2)
251
+ tzinfo-data
252
+ wdm (~> 0.1.1)
253
+
254
+ BUNDLED WITH
255
+ 2.1.4
data/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # bootstrap-jekyll-theme
2
+ Bootstrap Jekyll Theme
data/_config.yml ADDED
@@ -0,0 +1,57 @@
1
+ # Welcome to Jekyll!
2
+ #
3
+ # This config file is meant for settings that affect your whole blog, values
4
+ # which you are expected to set up once and rarely edit after that. If you find
5
+ # yourself editing this file very often, consider using Jekyll's data files
6
+ # feature for the data you need to update frequently.
7
+ #
8
+ # For technical reasons, this file is *NOT* reloaded automatically when you use
9
+ # 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10
+ #
11
+ # If you need help with YAML syntax, here are some quick references for you:
12
+ # https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
13
+ # https://learnxinyminutes.com/docs/yaml/
14
+ #
15
+ # Site settings
16
+ # These are used to personalize your new site. If you look in the HTML files,
17
+ # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
18
+ # You can create any custom variable you would like, and they will be accessible
19
+ # in the templates via {{ site.myvariable }}.
20
+
21
+ title: Your awesome title
22
+ email: your-email@example.com
23
+ description: >- # this means to ignore newlines until "baseurl:"
24
+ Write an awesome description for your new site here. You can edit this
25
+ line in _config.yml. It will appear in your document head meta (for
26
+ Google search results) and in your feed.xml site description.
27
+ baseurl: "/bootstrap-jekyll-theme" # the subpath of your site, e.g. /blog
28
+ url: "https://themingisprose.github.io/" # the base hostname & protocol for your site, e.g. http://example.com
29
+ twitter_username: jekyllrb
30
+ github_username: jekyll
31
+ sass:
32
+ sass_dir: assets/css
33
+
34
+ # Build settings
35
+ remote_theme: themingisprose/bootstrap-jekyll-theme
36
+ plugins:
37
+ - jekyll-feed
38
+
39
+ # Exclude from processing.
40
+ # The following items will not be processed, by default.
41
+ # Any item listed under the `exclude:` key here will be automatically added to
42
+ # the internal "default list".
43
+ #
44
+ # Excluded items can be processed by explicitly listing the directories or
45
+ # their entries' file path in the `include:` list.
46
+ #
47
+ # exclude:
48
+ # - .sass-cache/
49
+ # - .jekyll-cache/
50
+ # - gemfiles/
51
+ # - Gemfile
52
+ # - Gemfile.lock
53
+ # - node_modules/
54
+ # - vendor/bundle/
55
+ # - vendor/cache/
56
+ # - vendor/gems/
57
+ # - vendor/ruby/
@@ -0,0 +1,7 @@
1
+ <meta charset="utf-8">
2
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
3
+ <link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
4
+
5
+ {% seo %}
6
+
7
+ <title>{{ page.title }} - {{ site.title }}</title>
@@ -0,0 +1,2 @@
1
+ <script src="{{ '/assets/js/jquery/dist/jquery.min.js' | relative_url }}" type="text/javascript"></script>
2
+ <script src="{{ '/assets/js/bootstrap/dist/js/bootstrap.bundle.min.js' | relative_url }}" type="text/javascript"></script>
@@ -0,0 +1,12 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ {% include head.html %}
5
+ </head>
6
+ <body>
7
+
8
+ {{ content }}
9
+
10
+ {% include scripts.html %}
11
+ </body>
12
+ </html>
@@ -0,0 +1,4 @@
1
+ //
2
+ // Import Bootstrap
3
+ //
4
+ @import 'bootstrap/scss/bootstrap';
@@ -0,0 +1,51 @@
1
+ //
2
+ // Base styles
3
+ //
4
+
5
+ .alert {
6
+ position: relative;
7
+ padding: $alert-padding-y $alert-padding-x;
8
+ margin-bottom: $alert-margin-bottom;
9
+ border: $alert-border-width solid transparent;
10
+ @include border-radius($alert-border-radius);
11
+ }
12
+
13
+ // Headings for larger alerts
14
+ .alert-heading {
15
+ // Specified to prevent conflicts of changing $headings-color
16
+ color: inherit;
17
+ }
18
+
19
+ // Provide class for links that match alerts
20
+ .alert-link {
21
+ font-weight: $alert-link-font-weight;
22
+ }
23
+
24
+
25
+ // Dismissible alerts
26
+ //
27
+ // Expand the right padding and account for the close button's positioning.
28
+
29
+ .alert-dismissible {
30
+ padding-right: $close-font-size + $alert-padding-x * 2;
31
+
32
+ // Adjust close link position
33
+ .close {
34
+ position: absolute;
35
+ top: 0;
36
+ right: 0;
37
+ padding: $alert-padding-y $alert-padding-x;
38
+ color: inherit;
39
+ }
40
+ }
41
+
42
+
43
+ // Alternate styles
44
+ //
45
+ // Generate contextual modifier classes for colorizing the alert.
46
+
47
+ @each $color, $value in $theme-colors {
48
+ .alert-#{$color} {
49
+ @include alert-variant(theme-color-level($color, $alert-bg-level), theme-color-level($color, $alert-border-level), theme-color-level($color, $alert-color-level));
50
+ }
51
+ }