├── .gitignore
├── content
├── _index.md
├── 2022-04-27-being-shikamaru-104.md
├── 2022-04-28-being-shikamaru-103.md
├── 2022-05-03-being-shikamaru-101.md
└── being-shikamaru-102
│ └── index.md
├── .github
└── FUNDING.yml
├── screenshot.png
├── static
├── images
│ ├── shikamaru_avatar.webp
│ ├── kangae-desktop-dark.webp
│ ├── kangae-mobile-dark.webp
│ ├── kangae-mobile-light.webp
│ └── kangae-desktop-light.webp
└── css
│ ├── variables-dark-theme.css
│ ├── style-external-links.css
│ ├── variables-light-theme.css
│ └── style.css
├── templates
├── shortcodes
│ ├── kaomoji.html
│ └── quote.html
├── page.html
├── index.html
├── tags
│ ├── list.html
│ └── single.html
├── 404.html
├── macros
│ ├── article.html
│ └── head.html
└── base.html
├── netlify.toml
├── theme.toml
├── LICENSE
├── config.toml
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | public/
2 |
--------------------------------------------------------------------------------
/content/_index.md:
--------------------------------------------------------------------------------
1 | +++
2 | sort_by = "date"
3 | +++
4 |
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: ayushnix
2 | ko_fi: ayushnix
3 |
--------------------------------------------------------------------------------
/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ayushnix/kangae/HEAD/screenshot.png
--------------------------------------------------------------------------------
/static/images/shikamaru_avatar.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ayushnix/kangae/HEAD/static/images/shikamaru_avatar.webp
--------------------------------------------------------------------------------
/templates/shortcodes/kaomoji.html:
--------------------------------------------------------------------------------
1 | {{ text }}
2 |
--------------------------------------------------------------------------------
/static/images/kangae-desktop-dark.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ayushnix/kangae/HEAD/static/images/kangae-desktop-dark.webp
--------------------------------------------------------------------------------
/static/images/kangae-mobile-dark.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ayushnix/kangae/HEAD/static/images/kangae-mobile-dark.webp
--------------------------------------------------------------------------------
/static/images/kangae-mobile-light.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ayushnix/kangae/HEAD/static/images/kangae-mobile-light.webp
--------------------------------------------------------------------------------
/static/images/kangae-desktop-light.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ayushnix/kangae/HEAD/static/images/kangae-desktop-light.webp
--------------------------------------------------------------------------------
/netlify.toml:
--------------------------------------------------------------------------------
1 | [build]
2 | # base = "project/"
3 | publish = "public/"
4 | command = "zola build"
5 |
6 | [build.environment]
7 | ZOLA_VERSION = "0.15.3"
8 |
9 | [context.deploy-preview]
10 | command = "zola build --base-url $DEPLOY_PRIME_URL"
11 |
--------------------------------------------------------------------------------
/static/css/variables-dark-theme.css:
--------------------------------------------------------------------------------
1 | /* modus vivendi colorscheme */
2 |
3 | :root {
4 | --fg-color: #e0e6f0;
5 | --bg-color: #323232;
6 | --fg-href: #f2e4c4;
7 | --fg-border: #969696;
8 | --bg-mark: #dfdfb0;
9 | --fg-mark: #100f10;
10 | }
11 |
--------------------------------------------------------------------------------
/templates/page.html:
--------------------------------------------------------------------------------
1 | {% import "macros/article.html" as article %}
2 | {%- extends "base.html" -%}
3 |
4 | {%- block main %}
5 |
¯\_(ツ)_/¯25 |
You're looking for something that doesn't exist
26 |4 |8 |{{ body }}
5 |
6 | 7 |
13 |15 |{{ body }}
14 |
19 |23 | {% endif -%} 24 | -------------------------------------------------------------------------------- /templates/tags/single.html: -------------------------------------------------------------------------------- 1 | {% import "macros/article.html" as article %} 2 | {%- extends "base.html" -%} 3 | 4 | {%- block total_posts %} 5 | {%- if term and term.pages and term.pages | length == 1 %} 6 |{{ body }}
20 |
21 | 22 |
4 | {%- if page.date %} 5 | 6 | {% endif -%} 7 | {%- if page.title %} 8 | {{ page.title }} 9 | {% endif -%} 10 |
11 | {%- if page.taxonomies and page.taxonomies.tags %} 12 |