jekyll-dewey-decimal 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: d758e90f3e75745468b14718af6ad742e0e65ad414c527fd3fd524710f59256b
4
+ data.tar.gz: 44c78ec7621254a30e6aa1c8d432c550bf40374f049528a4013f8c8a41f1e9d7
5
+ SHA512:
6
+ metadata.gz: 15580cd83b7118b7755f0d33765f91d0bd5f03e1b21184c26b4bdd4c409e9b676ea13bca11f5957796f725e565212b0ea29f8d772fc61cdde4a38fe8b4cbfcfa
7
+ data.tar.gz: 36bdb665eb9206c47fd24da424f6e84294ea763db1e357a581161d5b286e89c49e5f6049ae1a73903fb9678ad1c5afcecb2d97709943f7a145c43050d88681f0
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+ gemspec
5
+
6
+ gem "rouge", "~> 4.2"
data/Gemfile.lock ADDED
@@ -0,0 +1,77 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ jekyll-dewey-decimal (0.1.0)
5
+ jekyll (~> 4.3)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ addressable (2.8.5)
11
+ public_suffix (>= 2.0.2, < 6.0)
12
+ colorator (1.1.0)
13
+ concurrent-ruby (1.2.2)
14
+ em-websocket (0.5.3)
15
+ eventmachine (>= 0.12.9)
16
+ http_parser.rb (~> 0)
17
+ eventmachine (1.2.7)
18
+ ffi (1.16.3)
19
+ forwardable-extended (2.6.0)
20
+ google-protobuf (3.25.1-x86_64-darwin)
21
+ http_parser.rb (0.8.0)
22
+ i18n (1.14.1)
23
+ concurrent-ruby (~> 1.0)
24
+ jekyll (4.3.2)
25
+ addressable (~> 2.4)
26
+ colorator (~> 1.0)
27
+ em-websocket (~> 0.5)
28
+ i18n (~> 1.0)
29
+ jekyll-sass-converter (>= 2.0, < 4.0)
30
+ jekyll-watch (~> 2.0)
31
+ kramdown (~> 2.3, >= 2.3.1)
32
+ kramdown-parser-gfm (~> 1.0)
33
+ liquid (~> 4.0)
34
+ mercenary (>= 0.3.6, < 0.5)
35
+ pathutil (~> 0.9)
36
+ rouge (>= 3.0, < 5.0)
37
+ safe_yaml (~> 1.0)
38
+ terminal-table (>= 1.8, < 4.0)
39
+ webrick (~> 1.7)
40
+ jekyll-sass-converter (3.0.0)
41
+ sass-embedded (~> 1.54)
42
+ jekyll-watch (2.2.1)
43
+ listen (~> 3.0)
44
+ kramdown (2.4.0)
45
+ rexml
46
+ kramdown-parser-gfm (1.1.0)
47
+ kramdown (~> 2.0)
48
+ liquid (4.0.4)
49
+ listen (3.8.0)
50
+ rb-fsevent (~> 0.10, >= 0.10.3)
51
+ rb-inotify (~> 0.9, >= 0.9.10)
52
+ mercenary (0.4.0)
53
+ pathutil (0.16.2)
54
+ forwardable-extended (~> 2.6)
55
+ public_suffix (5.0.4)
56
+ rb-fsevent (0.11.2)
57
+ rb-inotify (0.10.1)
58
+ ffi (~> 1.0)
59
+ rexml (3.2.6)
60
+ rouge (4.2.0)
61
+ safe_yaml (1.0.5)
62
+ sass-embedded (1.69.5-x86_64-darwin)
63
+ google-protobuf (~> 3.23)
64
+ terminal-table (3.0.2)
65
+ unicode-display_width (>= 1.1.1, < 3)
66
+ unicode-display_width (2.5.0)
67
+ webrick (1.8.1)
68
+
69
+ PLATFORMS
70
+ x86_64-darwin-23
71
+
72
+ DEPENDENCIES
73
+ jekyll-dewey-decimal!
74
+ rouge (~> 4.2)
75
+
76
+ BUNDLED WITH
77
+ 2.3.26
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Revati Tambe
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,62 @@
1
+ # jekyll-dewey-decimal
2
+
3
+ 📖 A content-first, minimal personal weblog and portfolio.
4
+
5
+ ![Screenshot](https://raw.githubusercontent.com/djarty24/jekyll-dewey-decimal/master/screenshot.png)
6
+
7
+ ## Contents
8
+ - [Installation](#installation)
9
+ - [Customizing](#customizing)
10
+ - [Page Layouts](#page-layouts)
11
+ - [Site Settings](#site-settings)
12
+ - [License](#license)
13
+
14
+ ## Installation
15
+
16
+ Add this line to your Jekyll site's `Gemfile`:
17
+
18
+ ```ruby
19
+ gem "jekyll-dewey-decimal"
20
+ ```
21
+
22
+ And add this line to your Jekyll site's `_config.yml`:
23
+
24
+ ```yaml
25
+ theme: jekyll-simple-blue
26
+ ```
27
+
28
+ And then execute:
29
+
30
+ $ bundle
31
+
32
+ Or install it yourself as:
33
+
34
+ $ gem install jekyll-dewey-decimal
35
+
36
+ ## Customizing
37
+
38
+ Using dewey as a theme means you can take advantage of the file overriding method. This allows you to overwrite any file in this theme with your own custom file, by matching the file name and path. The most common example of this would be if you want to add your own styles or change the core style settings.
39
+
40
+ To add your own styles copy the [`styles.css`](https://github.com/djarty24/jekyll-dewey-decimal/raw/main/assets/styles.css) into your own project with the same file path (`assets/styles.css`). From there you can add your own styles, and modify or even remove existing ones.
41
+
42
+ ## Page-Layouts
43
+
44
+ There are 3 layouts; `page`, `post`, and `home` (home acts as the front page blog).
45
+
46
+ ## Site-Settings
47
+
48
+ To modify set parameters, you need to modify the `_config.yml` `title` and `url`.
49
+
50
+ Additionally, you need to add the following parameters to edit the author name and email.
51
+
52
+ ```yaml
53
+ author:
54
+ name: Your name
55
+ email: Your email
56
+ ```
57
+
58
+ To add your resume, favicon, and a custom profile photo, simply copy them into the root folder with the names `resume.pdf`, `favicon.ico`, and `profile.png`.
59
+
60
+ ## License
61
+
62
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/_config.yml ADDED
@@ -0,0 +1,12 @@
1
+ title: SITE_TITLE
2
+ description: SITE_DESCRIPTION
3
+ author:
4
+ name: AUTHOR_NAME
5
+ email: EMAIL@EXAMPLE.COM
6
+ copyright_year: YEAR
7
+
8
+ markdown: kramdown
9
+
10
+ kramdown:
11
+ input: GFM
12
+ syntax_highlighter: rouge
@@ -0,0 +1,6 @@
1
+ <footer class="footer">
2
+ <p class="copyright">
3
+ &copy; {{ site.copyright_year }}.
4
+ Made with ♡ by <a href="mailto:{{ site.author.email }}" class="hard-anchor" title="mailto">{{ site.author.name }}</a> All rights reserved.
5
+ </p>
6
+ </footer>
@@ -0,0 +1,27 @@
1
+ <!-- <div class="header-container">
2
+ <nav>
3
+ <div class="nav-left">
4
+ <ul>
5
+ <li><a href="{{ '/' | relative_url }}">{{ site.title }}</a></li>
6
+ </ul>
7
+ </div>
8
+ <div class="nav-right">
9
+ <ul>
10
+ <li><a href="{{ '/about' | relative_url }}">About</a></li>
11
+ <li><a href="/resume.pdf" target="_blank">Resumé</a></li>
12
+ <li><a href="{{ '/contact' | relative_url }}">Contact</a></li>
13
+ </ul>
14
+ </div>
15
+ </nav>
16
+ </div> -->
17
+
18
+ <div class="header-container">
19
+ <ul class="nav-left">
20
+ <li><a href="{{ '/' | relative_url }}">{{ site.title }}</a></li>
21
+ </ul>
22
+ <ul class="nav-right">
23
+ <li><a href="{{ '/about' | relative_url }}" style="padding-left: 20px;">About</a></li>
24
+ <li><a href="/resume.pdf" target="_blank" style="padding-left: 20px;">Resumé</a></li>
25
+ <li><a href="{{ '/contact' | relative_url }}" style="padding-left: 20px;">Contact</a></li>
26
+ </ul>
27
+ </div>
@@ -0,0 +1,11 @@
1
+ <div class="post-list-container">
2
+ <h2>Blog posts</h2>
3
+ <ul class="posts-list">
4
+ {% for post in site.posts %}
5
+ <li>
6
+ <span class="post-date" style="color: #696969;">{{ post.date | date_to_string }} »</span>
7
+ <a href="{{ post.url }}" class="caption" title="🔖 {{ post.tags | array_to_sentence_string }}">{{post.title}}</a>
8
+ </li>
9
+ {% endfor %}
10
+ </ul>
11
+ </div>
@@ -0,0 +1,24 @@
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
+ <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=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inconsolata:wght@300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
9
+ <link rel="stylesheet" href="/assets/styles.css">
10
+ <link rel="stylesheet" href="/assets/syntax.css">
11
+ <link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@1,700&family=Inconsolata:wght@300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
12
+ <link rel="icon" type="image/x-icon" href="/favicon.ico">
13
+ <title>{{ site.title }}</title>
14
+ </head>
15
+ <body>
16
+ <div class="container">
17
+ <div class="main-container">
18
+ {% include header.html %}
19
+ {{ content }}
20
+ {% include footer.html %}
21
+ </div>
22
+ </div>
23
+ </body>
24
+ </html>
@@ -0,0 +1,11 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <div class="profile-container">
5
+ <h2>{{ site.author.name }}</h2>
6
+ <img src="/profile.png" alt="">
7
+ <h3>Welcome to my space on<br>the Internet.</h3>
8
+ </div>
9
+ <div class="posts-container">
10
+ {% include post-list.html %}
11
+ </div>
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,30 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
5
+ <article class="post-wrapper">
6
+ <section class="post-content">
7
+ <h1>{{ page.title }}</h1>
8
+ {% if page.date %}
9
+ <p class="meta" style="color: #696969;"><span style="font-style: italic;">{{ page.date | date_to_string }}</span> | {{ site.author.name }}</p>
10
+ {% endif %}
11
+ {{ content }}
12
+ {% if page.tags.size > 0 %}
13
+ <div class="post-tags">
14
+ <p class="meta">
15
+ {% if page.tags.size > 1 %}
16
+ TAGS:
17
+ {% else %}
18
+ TAG:
19
+ {% endif %}
20
+ {% for tag in page.tags %}
21
+ <a href="/tags.html#{{tag}}" title="tags">{{tag}}</a>
22
+ {% endfor %}
23
+ </p>
24
+ </div>
25
+ {% endif %}
26
+ </section>
27
+ <div class="backwards-link">
28
+ <p>« <a href="{{ '/' | relative_url }}" class="post-back" title="main-page">Back</a></p>
29
+ </div>
30
+ </article>
@@ -0,0 +1,8 @@
1
+ ---
2
+ layout: post
3
+ title: "Example Post 1: Welcome to my space on the Internet!"
4
+ date: 2023-10-12 12:32:50 -0700
5
+ tags: [book, review, ux, design]
6
+
7
+ ---
8
+ Add your content here!
@@ -0,0 +1,26 @@
1
+ ---
2
+ layout: post
3
+ title: "Example Post 2: The extraordinarily, ordinary life of myself."
4
+ date: 2023-10-13 12:32:50 -0700
5
+ tags: [book, ux]
6
+
7
+ ---
8
+ Add your content here!
9
+
10
+ # Testing out formats
11
+ This should be _italic_ and this should be **bold**. This should be ***both***!
12
+
13
+ # Testing out some latex:
14
+ The Pythagorean theorem is $$a^2 + b^2 = c^2$$.
15
+
16
+ # Testing code snippets:
17
+
18
+ ```java
19
+
20
+ public class java {
21
+ public static void main(String[] args) {
22
+ System.out.println("Hello World");
23
+ }
24
+ }
25
+
26
+ ```
@@ -0,0 +1,86 @@
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
+ <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=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inconsolata:wght@300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
9
+ <link rel="stylesheet" href="/assets/styles.css">
10
+ <link rel="stylesheet" href="/assets/syntax.css">
11
+ <link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@1,700&family=Inconsolata:wght@300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
12
+ <link rel="icon" type="image/x-icon" href="/favicon.ico">
13
+ <title>SITE_TITLE</title>
14
+ </head>
15
+ <body>
16
+ <div class="container">
17
+ <div class="main-container">
18
+ <!-- <div class="header-container">
19
+ <nav>
20
+ <div class="nav-left">
21
+ <ul>
22
+ <li><a href="/">SITE_TITLE</a></li>
23
+ </ul>
24
+ </div>
25
+ <div class="nav-right">
26
+ <ul>
27
+ <li><a href="/about">About</a></li>
28
+ <li><a href="/resume.pdf" target="_blank">Resumé</a></li>
29
+ <li><a href="/contact">Contact</a></li>
30
+ </ul>
31
+ </div>
32
+ </nav>
33
+ </div> -->
34
+
35
+ <div class="header-container">
36
+ <ul class="nav-left">
37
+ <li><a href="/">SITE_TITLE</a></li>
38
+ </ul>
39
+ <ul class="nav-right">
40
+ <li><a href="/about" style="padding-left: 20px;">About</a></li>
41
+ <li><a href="/resume.pdf" target="_blank" style="padding-left: 20px;">Resumé</a></li>
42
+ <li><a href="/contact" style="padding-left: 20px;">Contact</a></li>
43
+ </ul>
44
+ </div>
45
+ <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
46
+ <article class="post-wrapper">
47
+ <section class="post-content">
48
+ <h1>Example Post 1: Welcome to my space on the Internet!</h1>
49
+
50
+ <p class="meta" style="color: #696969;"><span style="font-style: italic;">12 Oct 2023</span> | AUTHOR_NAME</p>
51
+
52
+ <p>Add your content here!</p>
53
+
54
+
55
+ <div class="post-tags">
56
+ <p class="meta">
57
+
58
+ TAGS:
59
+
60
+
61
+ <a href="/tags.html#book" title="tags">book</a>
62
+
63
+ <a href="/tags.html#review" title="tags">review</a>
64
+
65
+ <a href="/tags.html#ux" title="tags">ux</a>
66
+
67
+ <a href="/tags.html#design" title="tags">design</a>
68
+
69
+ </p>
70
+ </div>
71
+
72
+ </section>
73
+ <div class="backwards-link">
74
+ <p>« <a href="/" class="post-back" title="main-page">Back</a></p>
75
+ </div>
76
+ </article>
77
+ <footer class="footer">
78
+ <p class="copyright">
79
+ &copy; YEAR.
80
+ Made with ♡ by <a href="mailto:EMAIL@EXAMPLE.COM" class="hard-anchor" title="mailto">AUTHOR_NAME</a> All rights reserved.
81
+ </p>
82
+ </footer>
83
+ </div>
84
+ </div>
85
+ </body>
86
+ </html>
@@ -0,0 +1,99 @@
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
+ <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=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inconsolata:wght@300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
9
+ <link rel="stylesheet" href="/assets/styles.css">
10
+ <link rel="stylesheet" href="/assets/syntax.css">
11
+ <link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@1,700&family=Inconsolata:wght@300;400;500;600;700&family=Outfit:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
12
+ <link rel="icon" type="image/x-icon" href="/favicon.ico">
13
+ <title>SITE_TITLE</title>
14
+ </head>
15
+ <body>
16
+ <div class="container">
17
+ <div class="main-container">
18
+ <!-- <div class="header-container">
19
+ <nav>
20
+ <div class="nav-left">
21
+ <ul>
22
+ <li><a href="/">SITE_TITLE</a></li>
23
+ </ul>
24
+ </div>
25
+ <div class="nav-right">
26
+ <ul>
27
+ <li><a href="/about">About</a></li>
28
+ <li><a href="/resume.pdf" target="_blank">Resumé</a></li>
29
+ <li><a href="/contact">Contact</a></li>
30
+ </ul>
31
+ </div>
32
+ </nav>
33
+ </div> -->
34
+
35
+ <div class="header-container">
36
+ <ul class="nav-left">
37
+ <li><a href="/">SITE_TITLE</a></li>
38
+ </ul>
39
+ <ul class="nav-right">
40
+ <li><a href="/about" style="padding-left: 20px;">About</a></li>
41
+ <li><a href="/resume.pdf" target="_blank" style="padding-left: 20px;">Resumé</a></li>
42
+ <li><a href="/contact" style="padding-left: 20px;">Contact</a></li>
43
+ </ul>
44
+ </div>
45
+ <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
46
+ <article class="post-wrapper">
47
+ <section class="post-content">
48
+ <h1>Example Post 2: The extraordinarily, ordinary life of myself.</h1>
49
+
50
+ <p class="meta" style="color: #696969;"><span style="font-style: italic;">13 Oct 2023</span> | AUTHOR_NAME</p>
51
+
52
+ <p>Add your content here!</p>
53
+
54
+ <h1 id="testing-out-formats">Testing out formats</h1>
55
+ <p>This should be <em>italic</em> and this should be <strong>bold</strong>. This should be <strong><em>both</em></strong>!</p>
56
+
57
+ <h1 id="testing-out-some-latex">Testing out some latex:</h1>
58
+ <p>The Pythagorean theorem is \(a^2 + b^2 = c^2\).</p>
59
+
60
+ <h1 id="testing-code-snippets">Testing code snippets:</h1>
61
+
62
+ <div class="language-java highlighter-rouge"><div class="highlight"><pre class="highlight"><code>
63
+ <span class="kd">public</span> <span class="kd">class</span> <span class="nc">java</span> <span class="o">{</span>
64
+ <span class="kd">public</span> <span class="kd">static</span> <span class="kt">void</span> <span class="nf">main</span><span class="o">(</span><span class="nc">String</span><span class="o">[]</span> <span class="n">args</span><span class="o">)</span> <span class="o">{</span>
65
+ <span class="nc">System</span><span class="o">.</span><span class="na">out</span><span class="o">.</span><span class="na">println</span><span class="o">(</span><span class="s">"Hello World"</span><span class="o">);</span>
66
+ <span class="o">}</span>
67
+ <span class="o">}</span>
68
+
69
+ </code></pre></div></div>
70
+
71
+
72
+ <div class="post-tags">
73
+ <p class="meta">
74
+
75
+ TAGS:
76
+
77
+
78
+ <a href="/tags.html#book" title="tags">book</a>
79
+
80
+ <a href="/tags.html#ux" title="tags">ux</a>
81
+
82
+ </p>
83
+ </div>
84
+
85
+ </section>
86
+ <div class="backwards-link">
87
+ <p>« <a href="/" class="post-back" title="main-page">Back</a></p>
88
+ </div>
89
+ </article>
90
+ <footer class="footer">
91
+ <p class="copyright">
92
+ &copy; YEAR.
93
+ Made with ♡ by <a href="mailto:EMAIL@EXAMPLE.COM" class="hard-anchor" title="mailto">AUTHOR_NAME</a> All rights reserved.
94
+ </p>
95
+ </footer>
96
+ </div>
97
+ </div>
98
+ </body>
99
+ </html>
data/_site/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Revati Tambe
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/_site/README.md ADDED
@@ -0,0 +1,62 @@
1
+ # jekyll-dewey-decimal
2
+
3
+ 📖 A content-first, minimal personal weblog and portfolio.
4
+
5
+ ![Screenshot](https://raw.githubusercontent.com/djarty24/jekyll-dewey-decimal/master/screenshot.png)
6
+
7
+ ## Contents
8
+ - [Installation](#installation)
9
+ - [Customizing](#customizing)
10
+ - [Page Layouts](#page-layouts)
11
+ - [Site Settings](#site-settings)
12
+ - [License](#license)
13
+
14
+ ## Installation
15
+
16
+ Add this line to your Jekyll site's `Gemfile`:
17
+
18
+ ```ruby
19
+ gem "jekyll-dewey-decimal"
20
+ ```
21
+
22
+ And add this line to your Jekyll site's `_config.yml`:
23
+
24
+ ```yaml
25
+ theme: jekyll-simple-blue
26
+ ```
27
+
28
+ And then execute:
29
+
30
+ $ bundle
31
+
32
+ Or install it yourself as:
33
+
34
+ $ gem install jekyll-dewey-decimal
35
+
36
+ ## Customizing
37
+
38
+ Using dewey as a theme means you can take advantage of the file overriding method. This allows you to overwrite any file in this theme with your own custom file, by matching the file name and path. The most common example of this would be if you want to add your own styles or change the core style settings.
39
+
40
+ To add your own styles copy the [`styles.css`](https://github.com/djarty24/jekyll-dewey-decimal/raw/main/assets/styles.css) into your own project with the same file path (`assets/styles.css`). From there you can add your own styles, and modify or even remove existing ones.
41
+
42
+ ## Page-Layouts
43
+
44
+ There are 3 layouts; `page`, `post`, and `home` (home acts as the front page blog).
45
+
46
+ ## Site-Settings
47
+
48
+ To modify set parameters, you need to modify the `_config.yml` `title` and `url`.
49
+
50
+ Additionally, you need to add the following parameters to edit the author name and email.
51
+
52
+ ```yaml
53
+ author:
54
+ name: Your name
55
+ email: Your email
56
+ ```
57
+
58
+ To add your resume, favicon, and a custom profile photo, simply copy them into the root folder with the names `resume.pdf`, `favicon.ico`, and `profile.png`.
59
+
60
+ ## License
61
+
62
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).