mocha-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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: ce27e1b415600ae32b745cd7cdbe47b30320aa5fb66ad6929e55bc7d9ef936f3
4
+ data.tar.gz: cff4430df62bd84761bd0b037de9716ad4caf3906fe1d2a0078e195a598d8c9b
5
+ SHA512:
6
+ metadata.gz: 993c3db44375fb858d7fb99e0650dd3492d227ba1e03159f5da91552e628c081371c129490776c33b300ef35011826adbb97ddba706fc176e196d42a5032785b
7
+ data.tar.gz: 62de428b9ad49a4b70fb80be06a80684d01a391a50f2a45260da15163860be0e45682acbd04957a5d17db50c824e7ca12dfa031ed553ea73edda93c2613deaa8
data/404.md ADDED
@@ -0,0 +1,20 @@
1
+ ---
2
+ title: 404
3
+ layout: default
4
+ permalink: /404
5
+ ---
6
+
7
+ # 404
8
+
9
+
10
+ ![waaahh](https://em-content.zobj.net/source/facebook/355/loudly-crying-face_1f62d.png){:width="250px" text-align="center"}
11
+
12
+
13
+ Oops! The page you are looking for cant be found!
14
+ {:.fourpage}
15
+
16
+
17
+ Fun Fact: You are loved! And will ever be!
18
+
19
+ [Go back to homepage?](/)
20
+ {:.gotohome}
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Snowflake6413
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 all
13
+ 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 THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,47 @@
1
+ # mocha-theme
2
+
3
+ ![Ruby](https://img.shields.io/badge/ruby-%23CC342D.svg?style=for-the-badge&logo=ruby&logoColor=white)
4
+ ![HTML5](https://img.shields.io/badge/html5-%23E34F26.svg?style=for-the-badge&logo=html5&logoColor=white)
5
+ ![SASS](https://img.shields.io/badge/SASS-hotpink.svg?style=for-the-badge&logo=SASS&logoColor=white)
6
+ ![Hackatime Duration](https://hackatime-badge.hackclub.com/U09PHG7RLGG/mocha-theme)
7
+
8
+ A cool [Jekyll](https://jekyllrb.com) theme designed for people who like the aesthetic or colors of *Mocha/Coffee.*
9
+
10
+ # Prerequisites
11
+ 1. [Ruby](https://www.ruby-lang.org/en/) Version 2.70 or higher.
12
+ 2 RubyGems
13
+
14
+ # Quick Start
15
+
16
+ 1. Add this line to your `Gemfile`
17
+
18
+ ```ruby
19
+ gem "mocha-theme"
20
+ ```
21
+
22
+ 2. Add this line to your `_config.yml`
23
+
24
+ ```ruby
25
+ theme: mocha-theme
26
+ ```
27
+
28
+ 3. Install it!
29
+
30
+ ```bash
31
+ bundle install
32
+ ```
33
+
34
+ 4. Serve your website
35
+
36
+ ```bash
37
+ bundle exec jekyll serve
38
+ ````
39
+
40
+
41
+ ### License
42
+
43
+ This repository is licensed under the MIT License. Read [LICENSE](LICENSE) for more information.
44
+
45
+
46
+ #### Extra
47
+ Made with ❤️. Check out [Tonic](https://tonic.hackclub.com/) by [Hack Club](http://hackclub.com/) to learn how to make your own theme! I used Tonic to learn how can I learn to make a Jekyll theme.
data/_config.yml ADDED
@@ -0,0 +1,7 @@
1
+ title: mocha-theme
2
+ description: "A pleasant Jekyll theme for Coffee/Mocha lovers."
3
+ encoding: utf-8
4
+ markdown: kramdown
5
+ highlighter: rogue
6
+
7
+ exclude: ["README.md", "LICENSE", "*.gem", "*.gemspec", "Gemfile.lock"]
@@ -0,0 +1,10 @@
1
+ <head>
2
+ <title>{{ page.title }} | {{ site.title }}</title>
3
+ <link rel="stylesheet" href="{{ '/assets/mocha-theme.css' | relative_url }}">
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <link rel="preconnect" href="https://fonts.googleapis.com">
7
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
8
+ <link href="https://fonts.googleapis.com/css2?family=Shadows+Into+Light+Two&display=swap" rel="stylesheet">
9
+ <link rel="icon" type="image/png" href="{{ '/assets/favicon.ico' | relative_url }}">
10
+ </head>
@@ -0,0 +1,7 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ {% include head.html %}
4
+ <body>
5
+ {{ content }}
6
+ </body>
7
+ </html>
data/_sass/base.scss ADDED
@@ -0,0 +1,36 @@
1
+ body {
2
+ background-color: #301c13;
3
+ font-family: "Shadows Into Light Two";
4
+ margin: auto;
5
+ text-align: center;
6
+ max-width: 70ch;
7
+ font-size: 22px;
8
+ color: #a8621d;
9
+ }
10
+
11
+ .circle-img {
12
+ border-radius: 50%;
13
+ width: 300px;
14
+ height: 300px;
15
+ object-fit: cover;
16
+ text-align: center;
17
+ }
18
+
19
+ .center{
20
+ text-align: center;
21
+ }
22
+
23
+ .fourpage{
24
+ text-align: center;
25
+ }
26
+
27
+ .gotohome{
28
+ text-align: center;
29
+ }
30
+
31
+ .crying-emoji{
32
+ text-align: center;
33
+ width: 200px;
34
+ height: 200px;
35
+ object-fit: cover;
36
+ }
Binary file
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "base.scss";
metadata ADDED
@@ -0,0 +1,76 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mocha-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Snowflake6413
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2025-12-12 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: jekyll
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '3.9'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '3.9'
26
+ - !ruby/object:Gem::Dependency
27
+ name: bundler
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ email:
41
+ - goodyforprivacy.fender966@passinbox.com
42
+ executables: []
43
+ extensions: []
44
+ extra_rdoc_files: []
45
+ files:
46
+ - 404.md
47
+ - LICENSE
48
+ - README.md
49
+ - _config.yml
50
+ - _includes/head.html
51
+ - _layouts/default.html
52
+ - _sass/base.scss
53
+ - assets/favicon.ico
54
+ - assets/mocha-theme.scss
55
+ homepage: https://github.com/Snowflake6413/mocha-theme
56
+ licenses:
57
+ - MIT
58
+ metadata: {}
59
+ rdoc_options: []
60
+ require_paths:
61
+ - lib
62
+ required_ruby_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ required_rubygems_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ requirements: []
73
+ rubygems_version: 3.6.2
74
+ specification_version: 4
75
+ summary: A Jekyll theme for people who like the themes of Mocha or coffee.
76
+ test_files: []