merriweather 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b1d626a4ceaf1ca6e803858f205c65ec654ca348
4
+ data.tar.gz: 251f8da6b98e00de14290ab00a091ce3ab3087fd
5
+ SHA512:
6
+ metadata.gz: ff33228bea025fcc5d41e56c19ef4a625daacd0da49d41acff5015385738fa85be1d7f03493d91389ec8749ad49bbc610789c33fcc85281b9b0c1e6e070eca5a
7
+ data.tar.gz: 635388b033210c1a5bb34893796a4d9eca3baa112dfd89ed9955371df2cdeabcbaaa9a5260f112ddcfcfaf038f0d39af9d0854963a970c1bb994e1c94862fd27
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,72 @@
1
+ # Merriweather
2
+
3
+ Welcome to the Merriweather Jekyll theme! Merriweather has a minimal layout emphasizing content and readability, mainly designed for a blog. The name is based off of the site's main font.
4
+
5
+ [Demo](https://merriweather.maxshalom.me) *(Coming Soon)*
6
+
7
+ ![Screenshot]()
8
+
9
+ ## Installation
10
+
11
+ Add this line to your Jekyll site's `Gemfile`:
12
+
13
+ ```ruby
14
+ gem "merriweather"
15
+ ```
16
+
17
+ And add this line to your Jekyll site's `_config.yml`:
18
+
19
+ ```yaml
20
+ theme: merriweather
21
+ ```
22
+
23
+ And then execute:
24
+
25
+ ```bash
26
+ $ bundle
27
+ ```
28
+
29
+ Or install it yourself as:
30
+
31
+ ```bash
32
+ $ gem install merriweather
33
+ ```
34
+ ## Usage
35
+
36
+ To add a post, simply make a `.md` file in the `_.posts` directory, named `[YEAR]-[MONTH]-[DAY]-MY-AWESOME-TITLE`.
37
+
38
+ For example, in the directory:
39
+
40
+ ```
41
+ merriweather
42
+ | _includes
43
+ | _layouts
44
+ | _sass
45
+ | assets
46
+ | _posts
47
+ |-- 2018-01-31-why-jekyll-rocks.md
48
+ | .gitignore
49
+ | README.md
50
+ | _config.yml
51
+ | Gemfile
52
+
53
+ ```
54
+
55
+ **More plugins coming soon!**
56
+
57
+ ## Contributing
58
+
59
+ Bug reports and pull requests are welcome on GitHub at [https://github.com/MaxShalom/merriweather](https://github.com/MaxShalom/merriweather). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](code-of-conduct.md) code of conduct.
60
+
61
+ ## Development
62
+
63
+ To set up your environment to develop this theme, run `bundle install`.
64
+
65
+ Merriweather is setup just like a normal Jekyll site! To test, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add posts and other files to test your theme's contents.
66
+
67
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
68
+
69
+ ## License
70
+
71
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
72
+
@@ -0,0 +1,22 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
7
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.2/css/bulma.min.css" />
8
+ <title>Footer</title>
9
+ <style>
10
+ .my-footer {text-align: center; padding-top: 3%;}
11
+ a {color:black; text-decoration: underline;}
12
+ </style>
13
+ </head>
14
+ <body class="my-footer">
15
+ <div class="columns">
16
+ <p class="column"><a href="http://maxshalom.me">Max Shalom</a></p>
17
+ <p class="column"><a href="mailto:hello@maxshalom.me">Email me</a></p>
18
+ <p class="column"><a href="https://blog.maxshalom.me">Blog Home</a></p>
19
+ </div>
20
+ <p align="center">Made with the <a href="https://github.com/MaxShalom/badger">Bager</a> Jekyll theme.</p>
21
+ </body>
22
+ </html>
@@ -0,0 +1,43 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
7
+ <title>Header</title>
8
+ <style>
9
+ ul {
10
+ list-style-type: none;
11
+ margin: 0;
12
+ padding: 0;
13
+ overflow: hidden;
14
+ background-color:rgba(0, 0, 0, 0);
15
+ }
16
+
17
+ li {
18
+ float: left;
19
+ }
20
+
21
+ li a {
22
+ display: block;
23
+ color: rgb(20, 20, 20);
24
+ text-align: center;
25
+ padding: 14px 16px;
26
+ text-decoration: none;
27
+ }
28
+
29
+ li a:hover {
30
+ text-decoration: underline;
31
+ }
32
+ </style>
33
+ </head>
34
+ <body>
35
+
36
+ <ul>
37
+ <li><a class="active" href="#home">Home</a></li>
38
+ <li><a href="#news">Archive</a></li>
39
+ <li><a href="#about">About</a></li>
40
+ </ul>
41
+
42
+ </body>
43
+ </html>
@@ -0,0 +1,5 @@
1
+ {% include header.html %}
2
+
3
+ {{ content }}
4
+
5
+ {% include footer.html %}
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,15 @@
1
+ @import url('https://fonts.googleapis.com/css?family=Merriweather:400,700|Raleway:800');
2
+
3
+ body {
4
+ font-family: 'Merriweather', serif;
5
+ }
6
+
7
+ img {
8
+ border-radius: 2px;
9
+ padding-top: 5px;
10
+ padding-bottom: 5px;
11
+ }
12
+
13
+ h1 {
14
+ font-family: 'Raleway', sans-serif;
15
+ }
metadata ADDED
@@ -0,0 +1,94 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: merriweather
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Max Shalom
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-04-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.7'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.16'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.16'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '12.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '12.0'
55
+ description:
56
+ email:
57
+ - hello@maxshalom.me
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.txt
63
+ - README.md
64
+ - _includes/footer.html
65
+ - _includes/header.html
66
+ - _layouts/default.html
67
+ - _layouts/page.html
68
+ - _layouts/post.html
69
+ - _sass/merriweather.scss
70
+ homepage: https://github.com/MaxShalom/merriweather
71
+ licenses:
72
+ - MIT
73
+ metadata: {}
74
+ post_install_message:
75
+ rdoc_options: []
76
+ require_paths:
77
+ - lib
78
+ required_ruby_version: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ required_rubygems_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ requirements: []
89
+ rubyforge_project:
90
+ rubygems_version: 2.5.2.2
91
+ signing_key:
92
+ specification_version: 4
93
+ summary: A minimal Jekyll theme emphasizing content and readability.
94
+ test_files: []