bridgetown-core 0.7.0 → 0.7.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +42 -0
  3. data/bridgetown-core.gemspec +46 -0
  4. data/lib/bridgetown-core.rb +202 -0
  5. data/lib/bridgetown-core/cache.rb +190 -0
  6. data/lib/bridgetown-core/cleaner.rb +111 -0
  7. data/lib/bridgetown-core/collection.rb +279 -0
  8. data/lib/bridgetown-core/command.rb +106 -0
  9. data/lib/bridgetown-core/commands/build.rb +96 -0
  10. data/lib/bridgetown-core/commands/clean.rb +43 -0
  11. data/lib/bridgetown-core/commands/console.rb +56 -0
  12. data/lib/bridgetown-core/commands/doctor.rb +172 -0
  13. data/lib/bridgetown-core/commands/help.rb +34 -0
  14. data/lib/bridgetown-core/commands/new.rb +148 -0
  15. data/lib/bridgetown-core/commands/serve.rb +273 -0
  16. data/lib/bridgetown-core/commands/serve/servlet.rb +68 -0
  17. data/lib/bridgetown-core/configuration.rb +323 -0
  18. data/lib/bridgetown-core/converter.rb +54 -0
  19. data/lib/bridgetown-core/converters/identity.rb +39 -0
  20. data/lib/bridgetown-core/converters/markdown.rb +108 -0
  21. data/lib/bridgetown-core/converters/markdown/kramdown_parser.rb +132 -0
  22. data/lib/bridgetown-core/converters/smartypants.rb +69 -0
  23. data/lib/bridgetown-core/convertible.rb +237 -0
  24. data/lib/bridgetown-core/deprecator.rb +50 -0
  25. data/lib/bridgetown-core/document.rb +475 -0
  26. data/lib/bridgetown-core/drops/bridgetown_drop.rb +32 -0
  27. data/lib/bridgetown-core/drops/collection_drop.rb +20 -0
  28. data/lib/bridgetown-core/drops/document_drop.rb +69 -0
  29. data/lib/bridgetown-core/drops/drop.rb +215 -0
  30. data/lib/bridgetown-core/drops/excerpt_drop.rb +19 -0
  31. data/lib/bridgetown-core/drops/page_drop.rb +14 -0
  32. data/lib/bridgetown-core/drops/site_drop.rb +62 -0
  33. data/lib/bridgetown-core/drops/static_file_drop.rb +14 -0
  34. data/lib/bridgetown-core/drops/unified_payload_drop.rb +26 -0
  35. data/lib/bridgetown-core/drops/url_drop.rb +132 -0
  36. data/lib/bridgetown-core/entry_filter.rb +108 -0
  37. data/lib/bridgetown-core/errors.rb +20 -0
  38. data/lib/bridgetown-core/excerpt.rb +202 -0
  39. data/lib/bridgetown-core/external.rb +62 -0
  40. data/lib/bridgetown-core/filters.rb +467 -0
  41. data/lib/bridgetown-core/filters/date_filters.rb +110 -0
  42. data/lib/bridgetown-core/filters/grouping_filters.rb +64 -0
  43. data/lib/bridgetown-core/filters/url_filters.rb +79 -0
  44. data/lib/bridgetown-core/frontmatter_defaults.rb +238 -0
  45. data/lib/bridgetown-core/generator.rb +5 -0
  46. data/lib/bridgetown-core/hooks.rb +103 -0
  47. data/lib/bridgetown-core/layout.rb +57 -0
  48. data/lib/bridgetown-core/liquid_extensions.rb +22 -0
  49. data/lib/bridgetown-core/liquid_renderer.rb +71 -0
  50. data/lib/bridgetown-core/liquid_renderer/file.rb +67 -0
  51. data/lib/bridgetown-core/liquid_renderer/table.rb +75 -0
  52. data/lib/bridgetown-core/log_adapter.rb +151 -0
  53. data/lib/bridgetown-core/log_writer.rb +60 -0
  54. data/lib/bridgetown-core/mime.types +867 -0
  55. data/lib/bridgetown-core/page.rb +214 -0
  56. data/lib/bridgetown-core/page_without_a_file.rb +14 -0
  57. data/lib/bridgetown-core/path_manager.rb +31 -0
  58. data/lib/bridgetown-core/plugin.rb +80 -0
  59. data/lib/bridgetown-core/plugin_manager.rb +60 -0
  60. data/lib/bridgetown-core/publisher.rb +23 -0
  61. data/lib/bridgetown-core/reader.rb +185 -0
  62. data/lib/bridgetown-core/readers/collection_reader.rb +22 -0
  63. data/lib/bridgetown-core/readers/data_reader.rb +75 -0
  64. data/lib/bridgetown-core/readers/layout_reader.rb +48 -0
  65. data/lib/bridgetown-core/readers/page_reader.rb +24 -0
  66. data/lib/bridgetown-core/readers/post_reader.rb +74 -0
  67. data/lib/bridgetown-core/readers/static_file_reader.rb +24 -0
  68. data/lib/bridgetown-core/regenerator.rb +195 -0
  69. data/lib/bridgetown-core/related_posts.rb +52 -0
  70. data/lib/bridgetown-core/renderer.rb +261 -0
  71. data/lib/bridgetown-core/site.rb +469 -0
  72. data/lib/bridgetown-core/static_file.rb +205 -0
  73. data/lib/bridgetown-core/tags/component.rb +34 -0
  74. data/lib/bridgetown-core/tags/highlight.rb +111 -0
  75. data/lib/bridgetown-core/tags/include.rb +220 -0
  76. data/lib/bridgetown-core/tags/link.rb +41 -0
  77. data/lib/bridgetown-core/tags/post_url.rb +107 -0
  78. data/lib/bridgetown-core/url.rb +164 -0
  79. data/lib/bridgetown-core/utils.rb +367 -0
  80. data/lib/bridgetown-core/utils/ansi.rb +57 -0
  81. data/lib/bridgetown-core/utils/exec.rb +26 -0
  82. data/lib/bridgetown-core/utils/internet.rb +37 -0
  83. data/lib/bridgetown-core/utils/platforms.rb +80 -0
  84. data/lib/bridgetown-core/utils/thread_event.rb +31 -0
  85. data/lib/bridgetown-core/utils/win_tz.rb +75 -0
  86. data/lib/bridgetown-core/version.rb +5 -0
  87. data/lib/bridgetown-core/watcher.rb +139 -0
  88. data/lib/site_template/.gitignore +6 -0
  89. data/lib/site_template/bridgetown.config.yml +21 -0
  90. data/lib/site_template/frontend/javascript/index.js +3 -0
  91. data/lib/site_template/frontend/styles/index.scss +17 -0
  92. data/lib/site_template/package.json +23 -0
  93. data/lib/site_template/src/404.html +9 -0
  94. data/lib/site_template/src/_data/site_metadata.yml +11 -0
  95. data/lib/site_template/src/_includes/footer.html +3 -0
  96. data/lib/site_template/src/_includes/head.html +9 -0
  97. data/lib/site_template/src/_includes/navbar.html +4 -0
  98. data/lib/site_template/src/_layouts/default.html +15 -0
  99. data/lib/site_template/src/_layouts/home.html +7 -0
  100. data/lib/site_template/src/_layouts/page.html +7 -0
  101. data/lib/site_template/src/_layouts/post.html +7 -0
  102. data/lib/site_template/src/_posts/0000-00-00-welcome-to-bridgetown.md.erb +26 -0
  103. data/lib/site_template/src/about.md +11 -0
  104. data/lib/site_template/src/index.md +7 -0
  105. data/lib/site_template/webpack.config.js +60 -0
  106. data/rake/release.rake +30 -0
  107. metadata +106 -1
@@ -0,0 +1,6 @@
1
+ output
2
+ node_modules
3
+ .sass-cache
4
+ .bridgetown-cache
5
+ .bridgetown-metadata
6
+ vendor
@@ -0,0 +1,21 @@
1
+ # Welcome to Bridgetown!
2
+ #
3
+ # This config file is for settings that affect your whole site, values
4
+ # which you are expected to set up once and rarely edit after that.
5
+ #
6
+ # For technical reasons, this file is *NOT* reloaded automatically when you use
7
+ # 'bundle exec bridgetown serve'. If you change this file, please restart the
8
+ # server process.
9
+ #
10
+ # For reloadable site metadata like title, SEO description, social media
11
+ # handles, etc., take a look at src/_data/site_metadata.yml
12
+ #
13
+ # If you need help with YAML syntax, here are some quick references for you:
14
+ # https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
15
+ # https://learnxinyminutes.com/docs/yaml/
16
+ #
17
+
18
+ baseurl: "" # OPTIONAL: the subpath of your site, e.g. /blog
19
+ url: "" # the base hostname & protocol for your site, e.g. http://example.com
20
+
21
+ # Additional build settings go here
@@ -0,0 +1,3 @@
1
+ import "../styles/index.scss"
2
+
3
+ console.info("Bridgetown is loaded!")
@@ -0,0 +1,17 @@
1
+ $body-background: #fafafa;
2
+ $body-color: #444;
3
+
4
+ body {
5
+ background: $body-background;
6
+ color: $body-color;
7
+ font-family: sans-serif;
8
+ }
9
+
10
+ h1, nav, footer {
11
+ text-align: center;
12
+ }
13
+
14
+ main {
15
+ margin: 4rem auto;
16
+ max-width: 60rem;
17
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "new-bridgetown-site",
3
+ "version": "1.0.0",
4
+ "private": true,
5
+ "scripts": {
6
+ "build": "webpack --mode production",
7
+ "dev": "webpack --mode development -w"
8
+ },
9
+ "devDependencies": {
10
+ "@babel/core": "^7.9.0",
11
+ "@babel/plugin-proposal-class-properties": "^7.8.3",
12
+ "@babel/preset-env": "^7.9.0",
13
+ "babel-loader": "^8.1.0",
14
+ "css-loader": "^3.4.2",
15
+ "file-loader": "^6.0.0",
16
+ "mini-css-extract-plugin": "^0.9.0",
17
+ "node-sass": "^4.13.1",
18
+ "sass-loader": "^8.0.2",
19
+ "style-loader": "^1.1.3",
20
+ "webpack": "^4.42.1",
21
+ "webpack-cli": "^3.3.11"
22
+ }
23
+ }
@@ -0,0 +1,9 @@
1
+ ---
2
+ permalink: /404.html
3
+ layout: default
4
+ ---
5
+
6
+ <h1>404</h1>
7
+
8
+ <p><strong>Page not found :(</strong></p>
9
+ <p>The requested page could not be found.</p>
@@ -0,0 +1,11 @@
1
+ # Site settings
2
+ # These are used to personalize your new site. If you look in the HTML files,
3
+ # you will see them accessed via {{ site.metadata.title }}, {{ site.metadata.email }}, and so on.
4
+ # You can create any custom variable you would like, and they will be accessible
5
+ # in the templates via {{ site.metadata.myvariable }}.
6
+
7
+ title: Your awesome title
8
+ tagline: This site is totally awesome
9
+ email: your-email@example.com
10
+ description: >- # this means to ignore newlines until "baseurl:"
11
+ Write an awesome description for your new site here. It will appear in your document head meta (for Google search results) and in your feed.xml site description.
@@ -0,0 +1,3 @@
1
+ <footer>
2
+ Contact me at {{ site.metadata.email }}
3
+ </footer>
@@ -0,0 +1,9 @@
1
+ <meta charset="utf-8" />
2
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
3
+ {% capture page_title %}{{ page.title | strip_html | strip_newlines }}{% endcapture %}
4
+ <title>{% if page_title != "" %}{{ page_title | escape }} | {{ site.metadata.title | escape }}{% else %}{{ site..metadata title | escape }}: {{ site.metadata.tagline | escape }}{% endif %}</title>
5
+
6
+ <meta name="description" content="{{ site.metadata.description }}" />
7
+
8
+ <link rel="stylesheet" href="/_bridgetown/static/css/all.css{% if bridgetown.environment == 'development' %}?{{ site.time | date: '%I%M%s' }}{% endif %}" />
9
+ <script src="/_bridgetown/static/js/all.js{% if bridgetown.environment == 'development' %}?{{ site.time | date: '%I%M%s' }}{% endif %}"></script>
@@ -0,0 +1,4 @@
1
+ <nav>
2
+ <a href="/">Home</a>
3
+ <a href="/about">About</a>
4
+ </nav>
@@ -0,0 +1,15 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ {% include head.html %}
5
+ </head>
6
+ <body class="{{ page.layout }} {{ page.page_class }}">
7
+ {% include navbar.html %}
8
+
9
+ <main>
10
+ {{ content }}
11
+ </main>
12
+
13
+ {% include footer.html %}
14
+ </body>
15
+ </html>
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <h1>Home Page</h1>
6
+
7
+ {{ content }}
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <h1>{{ page.title }}</h1>
6
+
7
+ {{ content }}
@@ -0,0 +1,7 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <h1>{{ page.title }}</h1>
6
+
7
+ {{ content }}
@@ -0,0 +1,26 @@
1
+ ---
2
+ layout: post
3
+ title: "Your First Post on Bridgetown"
4
+ date: <%= Time.now.strftime('%Y-%m-%d %H:%M:%S %z') %>
5
+ categories: updates
6
+ ---
7
+
8
+ You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `bridgetown serve`, which launches a web server and auto-regenerates your site when a file is updated.
9
+
10
+ Bridgetown requires blog post files to be named according to the following format:
11
+
12
+ `YEAR-MONTH-DAY-title.EXT`
13
+
14
+ Where `YEAR` is a four-digit number, `MONTH` and `DAY` are both two-digit numbers, and `EXT` is the file extension representing the format used in the file (for example, `md` for Markdown). After that, include the necessary front matter. Take a look at the source for this post to get an idea about how it works.
15
+
16
+ Bridgetown also offers powerful support for code snippets:
17
+
18
+ ```ruby
19
+ def print_hi(name)
20
+ puts "Hi, #{name}"
21
+ end
22
+ print_hi('Tom')
23
+ #=> prints 'Hi, Tom' to STDOUT.
24
+ ````
25
+
26
+ Check out the [Bridgetown docs](https://bridgetownrb.com/docs/) for more info on how to get the most out of Bridgetown. File all bugs/feature requests at [Bridgetown’s GitHub repo](https://github.com/bridgetownrb/bridgetown). If you have questions, you can ask them on [Bridgetown Community Forum](https://community.bridgetownrb.com).
@@ -0,0 +1,11 @@
1
+ ---
2
+ layout: page
3
+ title: About
4
+ permalink: /about/
5
+ ---
6
+
7
+ This is the basic Bridgetown site template. You can find out more info about customizing your Bridgetown site, as well as basic Bridgetown usage documentation at [bridgetownrb.com](https://bridgetownrb.com/)
8
+
9
+ You can find the source code for Bridgetown at GitHub:
10
+ [bridgetownrb](https://github.com/bridgetownrb) /
11
+ [bridgetown](https://github.com/bridgetownrb/bridgetown)
@@ -0,0 +1,7 @@
1
+ ---
2
+ # Feel free to add content and custom Front Matter to this file.
3
+
4
+ layout: home
5
+ ---
6
+
7
+ Welcome to Bridgetown!
@@ -0,0 +1,60 @@
1
+ const path = require('path');
2
+ const MiniCssExtractPlugin = require("mini-css-extract-plugin");
3
+
4
+ module.exports = {
5
+ entry: './frontend/javascript/index.js',
6
+ devtool: "source-map",
7
+ output: {
8
+ path: path.resolve(__dirname, 'output', '_bridgetown', 'static', 'js'),
9
+ filename: 'all.js'
10
+ },
11
+ resolve: {
12
+ extensions: ['.js']
13
+ },
14
+ plugins: [
15
+ new MiniCssExtractPlugin({
16
+ filename: "../css/all.css",
17
+ })
18
+ ],
19
+ module: {
20
+ rules: [
21
+ {
22
+ test: /\.js/,
23
+ use: {
24
+ loader: 'babel-loader',
25
+ options: {
26
+ presets: [
27
+ '@babel/preset-env'
28
+ ],
29
+ plugins: [
30
+ '@babel/plugin-proposal-class-properties'
31
+ ]
32
+ }
33
+ }
34
+ },
35
+ {
36
+ test: /\.(sc|c)ss$/,
37
+ use: [
38
+ MiniCssExtractPlugin.loader,
39
+ 'css-loader',
40
+ {
41
+ loader: 'sass-loader',
42
+ options: {
43
+ sassOptions: {
44
+ includePaths: [path.resolve(__dirname, 'src/_includes')]
45
+ }
46
+ }
47
+ }
48
+ ]
49
+ },
50
+ {
51
+ test: /\.woff2?$|\.ttf$|\.eot$|\.svg$/,
52
+ loader: 'file-loader',
53
+ options: {
54
+ outputPath: '../fonts',
55
+ publicPath: '../fonts'
56
+ },
57
+ }
58
+ ]
59
+ }
60
+ };
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ #############################################################################
4
+ #
5
+ # Packaging tasks
6
+ #
7
+ #############################################################################
8
+
9
+ # TODO: maybe this should get reworked to use Bundler's builtin Gem tasks?
10
+
11
+ desc "Release #{name} v#{version}"
12
+ task :bt_release => :bt_build do
13
+ current_branch = `git branch`.to_s.strip.match(%r!^\* (.+)$!)[1]
14
+ unless current_branch == "master" || current_branch.end_with?("-stable")
15
+ puts "You must be on the master branch to release!"
16
+ exit!
17
+ end
18
+ sh "git commit --allow-empty -m 'Release :gem: #{version}'"
19
+ sh "git tag v#{version}"
20
+ sh "git push origin #{current_branch}"
21
+ sh "git push origin v#{version}"
22
+ sh "gem push pkg/#{name}-#{version}.gem"
23
+ end
24
+
25
+ desc "Build #{name} v#{version} into pkg/"
26
+ task :bt_build do
27
+ mkdir_p "pkg"
28
+ sh "gem build #{gemspec_file}"
29
+ sh "mv #{gem_file} pkg"
30
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bridgetown-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bridgetown Team
@@ -186,7 +186,112 @@ executables:
186
186
  extensions: []
187
187
  extra_rdoc_files: []
188
188
  files:
189
+ - Rakefile
189
190
  - bin/bridgetown
191
+ - bridgetown-core.gemspec
192
+ - lib/bridgetown-core.rb
193
+ - lib/bridgetown-core/cache.rb
194
+ - lib/bridgetown-core/cleaner.rb
195
+ - lib/bridgetown-core/collection.rb
196
+ - lib/bridgetown-core/command.rb
197
+ - lib/bridgetown-core/commands/build.rb
198
+ - lib/bridgetown-core/commands/clean.rb
199
+ - lib/bridgetown-core/commands/console.rb
200
+ - lib/bridgetown-core/commands/doctor.rb
201
+ - lib/bridgetown-core/commands/help.rb
202
+ - lib/bridgetown-core/commands/new.rb
203
+ - lib/bridgetown-core/commands/serve.rb
204
+ - lib/bridgetown-core/commands/serve/servlet.rb
205
+ - lib/bridgetown-core/configuration.rb
206
+ - lib/bridgetown-core/converter.rb
207
+ - lib/bridgetown-core/converters/identity.rb
208
+ - lib/bridgetown-core/converters/markdown.rb
209
+ - lib/bridgetown-core/converters/markdown/kramdown_parser.rb
210
+ - lib/bridgetown-core/converters/smartypants.rb
211
+ - lib/bridgetown-core/convertible.rb
212
+ - lib/bridgetown-core/deprecator.rb
213
+ - lib/bridgetown-core/document.rb
214
+ - lib/bridgetown-core/drops/bridgetown_drop.rb
215
+ - lib/bridgetown-core/drops/collection_drop.rb
216
+ - lib/bridgetown-core/drops/document_drop.rb
217
+ - lib/bridgetown-core/drops/drop.rb
218
+ - lib/bridgetown-core/drops/excerpt_drop.rb
219
+ - lib/bridgetown-core/drops/page_drop.rb
220
+ - lib/bridgetown-core/drops/site_drop.rb
221
+ - lib/bridgetown-core/drops/static_file_drop.rb
222
+ - lib/bridgetown-core/drops/unified_payload_drop.rb
223
+ - lib/bridgetown-core/drops/url_drop.rb
224
+ - lib/bridgetown-core/entry_filter.rb
225
+ - lib/bridgetown-core/errors.rb
226
+ - lib/bridgetown-core/excerpt.rb
227
+ - lib/bridgetown-core/external.rb
228
+ - lib/bridgetown-core/filters.rb
229
+ - lib/bridgetown-core/filters/date_filters.rb
230
+ - lib/bridgetown-core/filters/grouping_filters.rb
231
+ - lib/bridgetown-core/filters/url_filters.rb
232
+ - lib/bridgetown-core/frontmatter_defaults.rb
233
+ - lib/bridgetown-core/generator.rb
234
+ - lib/bridgetown-core/hooks.rb
235
+ - lib/bridgetown-core/layout.rb
236
+ - lib/bridgetown-core/liquid_extensions.rb
237
+ - lib/bridgetown-core/liquid_renderer.rb
238
+ - lib/bridgetown-core/liquid_renderer/file.rb
239
+ - lib/bridgetown-core/liquid_renderer/table.rb
240
+ - lib/bridgetown-core/log_adapter.rb
241
+ - lib/bridgetown-core/log_writer.rb
242
+ - lib/bridgetown-core/mime.types
243
+ - lib/bridgetown-core/page.rb
244
+ - lib/bridgetown-core/page_without_a_file.rb
245
+ - lib/bridgetown-core/path_manager.rb
246
+ - lib/bridgetown-core/plugin.rb
247
+ - lib/bridgetown-core/plugin_manager.rb
248
+ - lib/bridgetown-core/publisher.rb
249
+ - lib/bridgetown-core/reader.rb
250
+ - lib/bridgetown-core/readers/collection_reader.rb
251
+ - lib/bridgetown-core/readers/data_reader.rb
252
+ - lib/bridgetown-core/readers/layout_reader.rb
253
+ - lib/bridgetown-core/readers/page_reader.rb
254
+ - lib/bridgetown-core/readers/post_reader.rb
255
+ - lib/bridgetown-core/readers/static_file_reader.rb
256
+ - lib/bridgetown-core/regenerator.rb
257
+ - lib/bridgetown-core/related_posts.rb
258
+ - lib/bridgetown-core/renderer.rb
259
+ - lib/bridgetown-core/site.rb
260
+ - lib/bridgetown-core/static_file.rb
261
+ - lib/bridgetown-core/tags/component.rb
262
+ - lib/bridgetown-core/tags/highlight.rb
263
+ - lib/bridgetown-core/tags/include.rb
264
+ - lib/bridgetown-core/tags/link.rb
265
+ - lib/bridgetown-core/tags/post_url.rb
266
+ - lib/bridgetown-core/url.rb
267
+ - lib/bridgetown-core/utils.rb
268
+ - lib/bridgetown-core/utils/ansi.rb
269
+ - lib/bridgetown-core/utils/exec.rb
270
+ - lib/bridgetown-core/utils/internet.rb
271
+ - lib/bridgetown-core/utils/platforms.rb
272
+ - lib/bridgetown-core/utils/thread_event.rb
273
+ - lib/bridgetown-core/utils/win_tz.rb
274
+ - lib/bridgetown-core/version.rb
275
+ - lib/bridgetown-core/watcher.rb
276
+ - lib/site_template/.gitignore
277
+ - lib/site_template/bridgetown.config.yml
278
+ - lib/site_template/frontend/javascript/index.js
279
+ - lib/site_template/frontend/styles/index.scss
280
+ - lib/site_template/package.json
281
+ - lib/site_template/src/404.html
282
+ - lib/site_template/src/_data/site_metadata.yml
283
+ - lib/site_template/src/_includes/footer.html
284
+ - lib/site_template/src/_includes/head.html
285
+ - lib/site_template/src/_includes/navbar.html
286
+ - lib/site_template/src/_layouts/default.html
287
+ - lib/site_template/src/_layouts/home.html
288
+ - lib/site_template/src/_layouts/page.html
289
+ - lib/site_template/src/_layouts/post.html
290
+ - lib/site_template/src/_posts/0000-00-00-welcome-to-bridgetown.md.erb
291
+ - lib/site_template/src/about.md
292
+ - lib/site_template/src/index.md
293
+ - lib/site_template/webpack.config.js
294
+ - rake/release.rake
190
295
  homepage: https://bridgetownrb.com
191
296
  licenses:
192
297
  - MIT