Skip to content

Commit e314743

Browse files
committed
reconfig of sidebar mostly done; remove reference template
1 parent c8bf8e1 commit e314743

File tree

189 files changed

+5151
-41837
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

189 files changed

+5151
-41837
lines changed

CHANGELOG.md

-190
This file was deleted.

README.md

+4-93
Original file line numberDiff line numberDiff line change
@@ -1,95 +1,6 @@
1-
<div align="center">
1+
Repo for blog content
22

3-
# Chirpy Jekyll Theme
3+
- Main site (docs & playground): https://json-everything.net
4+
- Docs: https://docs.json-everything.net
45

5-
A minimal, responsive and feature-rich Jekyll theme for technical writing.
6-
7-
[![Gem Version](https://img.shields.io/gem/v/jekyll-theme-chirpy?color=brightgreen)](https://rubygems.org/gems/jekyll-theme-chirpy)
8-
[![CI](https://github.com/cotes2020/jekyll-theme-chirpy/actions/workflows/ci.yml/badge.svg)](https://github.com/cotes2020/jekyll-theme-chirpy/actions/workflows/ci.yml)
9-
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/4e556876a3c54d5e8f2d2857c4f43894)](https://www.codacy.com/gh/cotes2020/jekyll-theme-chirpy/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=cotes2020/jekyll-theme-chirpy&amp;utm_campaign=Badge_Grade)
10-
[![GitHub license](https://img.shields.io/github/license/cotes2020/jekyll-theme-chirpy.svg)](https://github.com/cotes2020/jekyll-theme-chirpy/blob/master/LICENSE)
11-
[![996.icu](https://img.shields.io/badge/link-996.icu-%23FF4D5B.svg)](https://996.icu)
12-
13-
[**Live Demo →**][demo]
14-
15-
[![Devices Mockup](https://chirpy-img.netlify.app/commons/devices-mockup.png)][demo]
16-
17-
</div>
18-
19-
## Features
20-
21-
<details>
22-
<summary>
23-
<i>Click to view features</i>
24-
</summary>
25-
<p>
26-
27-
- Dark / Light Theme Mode
28-
- Localized UI language
29-
- Pinned Posts
30-
- Hierarchical Categories
31-
- Trending Tags
32-
- Table of Contents
33-
- Last Modified Date of Posts
34-
- Syntax Highlighting
35-
- Mathematical Expressions
36-
- Mermaid Diagram & Flowchart
37-
- Dark / Light Mode Images
38-
- Embed Videos
39-
- Disqus / Utterances / Giscus Comments
40-
- Search
41-
- Atom Feeds
42-
- Google Analytics
43-
- Page Views Reporting
44-
- SEO & Performance Optimization
45-
46-
</p>
47-
</details>
48-
49-
## Documentation
50-
51-
To explore usage, development, and upgrade guide of the project, please refer to
52-
the [Wiki][wiki].
53-
54-
## Contributing
55-
56-
Welcome to report bugs, help improve the code or submit new features.
57-
For more information, please see the ["Contributing Guidelines"][contribute-guide].
58-
59-
## Credits
60-
61-
This theme is mainly built with [Jekyll][jekyllrb] ecosystem,
62-
[Bootstrap][bootstrap], [Font Awesome][icons] and some other [wonderful tools][lib].
63-
The avatar and favicon design come from [Clipart Max][image].
64-
65-
Thanks to all the [contributors][contributors]. Also, folks who submitted issues
66-
or unmerged PRs should not be forgotten. Because they reported bugs, shared ideas,
67-
or inspired me to write more readable documentation.
68-
69-
Last but not least, thanks to [JetBrains][jetbrains] for providing the
70-
_Open Source Development_ license.
71-
72-
## Sponsoring
73-
74-
If you'd like to sponsor this project, the following options are available.
75-
76-
[![Ko-fi](https://img.shields.io/badge/-Buy%20Me%20a%20Coffee-ff5f5f?logo=ko-fi&logoColor=white)](https://ko-fi.com/coteschung)
77-
[![Wechat Pay](https://img.shields.io/badge/-Tip%20Me%20on%20WeChat-brightgreen?logo=wechat&logoColor=white)][donation]
78-
[![Alipay](https://img.shields.io/badge/-Tip%20Me%20on%20Alipay-blue?logo=alipay&logoColor=white)][donation]
79-
80-
## License
81-
82-
This work is published under [MIT][mit] License.
83-
84-
[jekyllrb]: https://jekyllrb.com/
85-
[bootstrap]: https://getbootstrap.com/
86-
[icons]: https://fontawesome.com/
87-
[image]: https://www.clipartmax.com/middle/m2i8b1m2K9Z5m2K9_ant-clipart-childrens-ant-cute/
88-
[demo]: https://cotes2020.github.io/chirpy-demo/
89-
[wiki]: https://github.com/cotes2020/jekyll-theme-chirpy/wiki
90-
[contribute-guide]: https://github.com/cotes2020/jekyll-theme-chirpy/blob/master/.github/CONTRIBUTING.md
91-
[contributors]: https://github.com/cotes2020/jekyll-theme-chirpy/graphs/contributors
92-
[lib]: https://github.com/cotes2020/chirpy-static-assets
93-
[jetbrains]: https://www.jetbrains.com/?from=jekyll-theme-chirpy
94-
[donation]: https://sponsor.cotes.page/
95-
[mit]: https://github.com/cotes2020/jekyll-theme-chirpy/blob/master/LICENSE
6+
For editing tips, see https://chirpy.cotes.page/.

_config.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,9 @@ collections:
145145
tabs:
146146
output: true
147147
sort_by: order
148+
docs:
149+
output: true
150+
sort_by: order
148151

149152
defaults:
150153
- scope:
@@ -158,15 +161,18 @@ defaults:
158161
# to update the code of all other post links in this project.
159162
permalink: /posts/:title/
160163
- scope:
161-
path: _drafts
164+
path: ""
165+
type: tabs # see `site.collections`
162166
values:
163-
comments: false
167+
layout: page
168+
permalink: /:title/
164169
- scope:
165170
path: ""
166-
type: tabs # see `site.collections`
171+
type: docs # see `site.collections`
167172
values:
168173
layout: page
169174
permalink: /:title/
175+
toc: true
170176
- scope:
171177
path: assets/img/favicons
172178
values:

_data/authors.yml

-17
This file was deleted.

_data/contact.yml

+18-15
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,31 @@
11
# The contact options.
22

3+
# - type: slack
4+
# icon: "fab fa-slack"
5+
36
- type: github
47
icon: "fab fa-github"
58

6-
- type: twitter
7-
icon: "fab fa-twitter"
8-
99
- type: email
1010
icon: "fas fa-envelope"
1111
noblank: true # open link in current tab
12-
13-
- type: rss
14-
icon: "fas fa-rss"
15-
noblank: true
1612
# Uncomment and complete the url below to enable more contact options
1713
#
18-
# - type: mastodon
19-
# icon: 'fab fa-mastodon' # icons powered by <https://fontawesome.com/>
20-
# url: '' # Fill with your Mastodon account page, rel="me" will be applied for verification
21-
#
22-
# - type: linkedin
23-
# icon: 'fab fa-linkedin' # icons powered by <https://fontawesome.com/>
24-
# url: '' # Fill with your Linkedin homepage
25-
#
14+
- type: mastodon
15+
icon: 'fab fa-mastodon' # icons powered by <https://fontawesome.com/>
16+
url: '' # Fill with your Mastodon account page, rel="me" will be applied for verification
17+
18+
- type: twitter
19+
icon: "fab fa-twitter"
20+
21+
- type: linkedin
22+
icon: 'fab fa-linkedin' # icons powered by <https://fontawesome.com/>
23+
url: '' # Fill with your Linkedin homepage
24+
2625
# - type: stack-overflow
2726
# icon: 'fab fa-stack-overflow'
2827
# url: '' # Fill with your stackoverflow homepage
28+
29+
- type: rss
30+
icon: "fas fa-rss"
31+
noblank: true

_data/share.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ platforms:
1515
link: "https://t.me/share/url?url=URL&text=TITLE"
1616

1717
# Uncomment below if you need to.
18-
#
19-
# - type: Linkedin
20-
# icon: "fab fa-linkedin"
21-
# link: "https://www.linkedin.com/sharing/share-offsite/?url=URL"
18+
19+
- type: Linkedin
20+
icon: "fab fa-linkedin"
21+
link: "https://www.linkedin.com/sharing/share-offsite/?url=URL"
2222
#
2323
# - type: Weibo
2424
# icon: "fab fa-weibo"

_docs-template-reference/.circleci/circle_urls.sh

-4
This file was deleted.

_docs-template-reference/.circleci/config.yml

-50
This file was deleted.

_docs-template-reference/.github/stale.yml

-17
This file was deleted.

_docs-template-reference/.github/workflows/main.yml

-16
This file was deleted.

_docs-template-reference/.gitignore

-3
This file was deleted.

_docs-template-reference/404.md

-10
This file was deleted.

_docs-template-reference/CHANGELOG.md

-35
This file was deleted.

_docs-template-reference/COPYRIGHT

-13
This file was deleted.

_docs-template-reference/Gemfile

-24
This file was deleted.

0 commit comments

Comments
 (0)