jekyll-theme-doctored 0.3.6 → 0.3.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6704d84cc98e0dc727bf41822c831a8bca90ec8bf9d105d5edf71f727e3d20bf
4
- data.tar.gz: 9cabf9f07df5232ed060e15f12a3490cb47bc670d1ab99e12aff30ba32b820e2
3
+ metadata.gz: 916222ff4063dffe01c2335ba0db4970dd6e3ee289923cdc99105b35988d802f
4
+ data.tar.gz: 924ac96eaeb41786a8568c21ee6f358361f2a27f0a48a41d98464b3b96810de3
5
5
  SHA512:
6
- metadata.gz: fb2611c161529d2f7d4bc223b0755347b41ae700e32d9229a76a1099e51e9df69a8007eb2fbce03b12467c6b137a618bb819261b62569950cbe7225504f312dc
7
- data.tar.gz: 3bdcc1b100713c29b049ec9c17adcbef454cfafc7e4014de94dd9a7181d60f911fb2d7cd1ddc40934ba00e82f8ba07096eb82ffc270f8a240cee08f7081757f1
6
+ metadata.gz: faadfbdd36b101a65b7bb6d2a2ae029b98c08a6ed3a0ad84c9a1517d2a29539005a8b674916661a957c75dd742720a4f40ca07c29a40393a86547c9c567d769c
7
+ data.tar.gz: 109765a49f7db1847830007a86c74ad016667d3dc9cd84416c2227ef0d7c13fe0e1b36cad4562ae4d1c7444541244de6035a42b399239c94acd6110b70cab58a
data/_pages/-404.html ADDED
@@ -0,0 +1,8 @@
1
+ ---
2
+ layout: page
3
+ title: 404
4
+ description: Page not found
5
+ permalink: /404.html
6
+ ---
7
+
8
+ hi this page doesn't exist yet sorry
data/_pages/about.md ADDED
@@ -0,0 +1,94 @@
1
+ ---
2
+ layout: page
3
+ title: About
4
+ description: What Doctored is and why it exists.
5
+ footnotes: false
6
+ toc: true
7
+ ---
8
+
9
+ <!-- This file is auto-generated based on a markdown file in _drafts. Do not edit directly. -->
10
+
11
+ ## Inspiration
12
+
13
+ The idea for doctored was taken from seeing so many amazing blogs which have their own distinctive, refined personalities. These include:
14
+
15
+ - Alex Plescan's AMAZING hugo-based [blog](https://alexplescan.com/)
16
+ - Noel Berry's creative gamedev [page](https://noelberry.ca/index.html)
17
+ - Mahad Kalan's elegant astro [site](https://skyfall.dev/)
18
+ - the Quartz obsidian plugin theme
19
+ - the lualine neovim plugin
20
+ - and many more who I will make sure to acknowledge later!
21
+
22
+ ## Roadmap
23
+
24
+ Doctored is very much still a WIP. Feel free to monitor or contribute to the status of the project!
25
+
26
+ - #### rendering
27
+ - [x] footnotes & sidenotes
28
+ - [x] GFM (admonitions, checkboxes, etc.)
29
+ - [x] floating table of contents with links and scrollspy
30
+ - [x] heading anchors
31
+ - [ ] captioned images/figures
32
+ - [ ] quotes
33
+ - [ ] dialogue message chains
34
+ - [ ] codeblocks
35
+ - [ ] syntax highlighting
36
+ - [ ] linking w/ agda
37
+ - #### frontend
38
+ - [x] light/dark ui modes
39
+ - [x] responsive navbar/footer
40
+ - [x] fontawesome icons
41
+ - [x] git metadata (footer ref)
42
+ - [x] anchor/external link icons
43
+ - [x] page TOC section progressrings
44
+ - [x] post tags
45
+ - [x] related posts/projects
46
+ - [ ] newsletter integrations
47
+ - [ ] project posts
48
+ - [ ] i18n ui
49
+ - [ ] post series
50
+ - [ ] post search (simple or advanced)
51
+ - [ ] link previews?
52
+ - [ ] local time
53
+ - [ ] visual site map (graph)
54
+ - [ ] webrings
55
+ - [ ] 88x31s
56
+ - [ ] isso comments
57
+ - [ ] scroll to top button
58
+ - #### pages
59
+ - [x] index
60
+ - [x] about
61
+ - [x] blog
62
+ - [x] 404
63
+ - [x] now
64
+ - [ ] stream microblog
65
+ - [x] projects
66
+ - [ ] tag
67
+ - [ ] contact
68
+ - #### meta
69
+ - [x] [sitemap]({{ '/sitemap.xml' | relative_url }})
70
+ - [x] global RSS [feed]({{ '/feed.xml' | relative_url }})
71
+ - [x] add seo tags
72
+ - [x] tag rss feeds
73
+ - [ ] robots.txt
74
+ - #### docs
75
+ - [ ] demo/trailer video
76
+ - [ ] better README
77
+ - [ ] document doctored with doctored!!
78
+ - [ ] make starters for:
79
+ - [ ] digital gardening
80
+ - [ ] blogging
81
+ - [ ] portfolioing
82
+ - [ ] documenting
83
+ - #### dx
84
+ - [ ] rakefiles?
85
+ - [ ] nixos setup
86
+ - [ ] i18n
87
+ - [ ] "doctor"ing with lualine-like config
88
+ - [ ] page sections
89
+ - [ ] FAQ
90
+ - [ ] foot
91
+ - [ ] navbar tabs
92
+ - [ ] style
93
+ - [ ] fonts
94
+ - [x] customizable tailwind palette (22 [colors](tailwindcss.com/docs/colors)!)
data/_pages/blog.html ADDED
@@ -0,0 +1,14 @@
1
+ ---
2
+ layout: page
3
+ title: Blog
4
+ description: A collection of the latest posts and articles
5
+ permalink: /blog/
6
+ ---
7
+
8
+ {{ page.description}}
9
+
10
+ <ul class="px-0 flex flex-col mt-4 gap-4 not-prose pt-8">
11
+ {% for post in site.posts %}
12
+ {% include post-card.html post=post %}
13
+ {% endfor %}
14
+ </ul>
data/_pages/index.md ADDED
@@ -0,0 +1,67 @@
1
+ ---
2
+ layout: page
3
+ title: Welcome to my Theme
4
+ description: The home page for the Doctored blog theme.
5
+ permalink: /
6
+ ---
7
+
8
+ <!-- This file is auto-generated based on a markdown file in _drafts. Do not edit directly. -->
9
+
10
+ a couple of _the_ most common questions<small>These are also some of the most common questions that <a href="https://en.wikipedia.org/wiki/Five_Ws">journalists</a> have!</small>[^1] you might have.
11
+
12
+ ## What?
13
+
14
+ - A jekyll theme which prioritizes uniqueness, technical complexity, and sophistication<small>While this could be redundant, it describes the the theme's vibe.</small>[^2]
15
+
16
+ ## Recent Projects
17
+
18
+ <ul class="px-0 flex mt-3 flex-col gap-3 not-prose">
19
+ {% assign recent_projects = site.projects | sort: "start_date" | reverse %}
20
+ {% for project in recent_projects limit:4 %}
21
+ {% include post-card.html entry=project kind='project' %}
22
+ {% endfor %}
23
+ </ul>
24
+
25
+ ## Recent Blog Posts
26
+
27
+ <ul class="px-0 flex mt-3 flex-col gap-3 not-prose">
28
+ {% for post in site.posts limit:3 %}
29
+ {% include post-card.html entry=post kind='post' %}
30
+ {% endfor %}
31
+ </ul>
32
+
33
+ - **For a full list of features, see [/about]({{ '/about' | relative_url }}).**
34
+ - **For code, usage instructions, and (limited) docs, see [:github]({{ site.github }}).**
35
+
36
+ ## Why?
37
+
38
+ Because there is no theme quite like what I would want.
39
+
40
+ ## How?
41
+
42
+ Doctored uses the following technologies:
43
+
44
+ 1. Jekyll, which enables markdown-powered static sites
45
+ 2. Tailwind CSS<small>Requiring node, this struck a balance between maintainability and bloat.</small>[^3], which makes styling so much easier!
46
+
47
+ ## Where?
48
+
49
+ Right here, of course! But it can also be on your website: Instructions coming soon.
50
+
51
+ ## Who?
52
+
53
+ - The theme was made by [me]() with heavy inspiration taken from some blogs I like [links pending].
54
+ - and [this blog post](https://danilafe.com/blog/blog_microfeatures/) by Daniel Fedorin on microfeatures.
55
+ - Also quite inspired by Mani Kumar's Xterm [theme](https://manid2.github.io/hugo-xterm/) for Hugo.
56
+ - Lastly, big thanks to [Kieren J. Underwood](https://github.com/JacobU/markdown-jekyll-preprocessor/tree/master), [Kaushik Gopal](https://kau.sh/blog/jekyll-footnote-tufte-sidenote/), and [Dave Liepmann](https://edwardtufte.github.io/tufte-css/) and for their contributions to markdown-based sidenotes for Jekyll (and the massively-inspiring Tufte CSS respectively)!
57
+ - Several awesome jekyll pure-liquid snippets by [Vladimir Jimenez](https://github.com/allejo) [specifically: jekyll-yamlfy, jekyll-toc, and jekyll-anchor-headings]
58
+
59
+ ## When?
60
+
61
+ The version of the site you're viewing now was built on {{ site.git.last_commit.commit_date }}
62
+
63
+
64
+ ## Footnotes
65
+ [^1]: These are also some of the most common questions that <a href="https://en.wikipedia.org/wiki/Five_Ws">journalists</a> have!
66
+ [^2]: While this could be redundant, it describes the the theme's vibe.
67
+ [^3]: Requiring node, this struck a balance between maintainability and bloat.
data/_pages/now.md ADDED
@@ -0,0 +1,17 @@
1
+ ---
2
+ layout: page
3
+ title: Now
4
+ description: What I'm doing now
5
+ footnotes: false
6
+ ---
7
+
8
+ <!-- This file is auto-generated based on a markdown file in _drafts. Do not edit directly. -->
9
+ This is a now page, telling you what I'm doing right now.
10
+
11
+ ### Learning
12
+
13
+ ### Reading/Watching
14
+
15
+ ### Writing/Creating
16
+
17
+ ### Thinking About
@@ -0,0 +1,16 @@
1
+ ---
2
+ layout: page
3
+ title: Projects
4
+ description: My proudest projects and achievements
5
+ permalink: /projects/
6
+ ---
7
+
8
+ {{ page.description}}
9
+
10
+ <ul class="px-0 flex mt-4 flex-col gap-4 not-prose pt-8">
11
+ {% assign sorted_projects = site.projects | sort: "start_date" | reverse %}
12
+ {% for project in sorted_projects %}
13
+ {% include post-card.html entry=project kind='project' %}
14
+
15
+ {% endfor %}
16
+ </ul>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-doctored
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - matmanna
@@ -200,6 +200,12 @@ files:
200
200
  - _layouts/project.html
201
201
  - _layouts/tag_feed.xml
202
202
  - _layouts/tag_page.html
203
+ - _pages/-404.html
204
+ - _pages/about.md
205
+ - _pages/blog.html
206
+ - _pages/index.md
207
+ - _pages/now.md
208
+ - _pages/projects.html
203
209
  - assets/css/tailwind.css
204
210
  - assets/fonts/LibertinusMonoMono.woff2
205
211
  - assets/images/favicon.ico