Skip to content

Commit 7bcf04e

Browse files
Window5Window5
Window5
authored and
Window5
committed
website
1 parent f1cb45f commit 7bcf04e

Some content is hidden

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

54 files changed

+3460
-0
lines changed

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
_site/
2+
.sass-cache/
3+
.jekyll-cache/
4+
.jekyll-metadata
5+
_drafts
6+
klise-*.gem
7+
Gemfile.lock

404.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: Lost from journey
3+
layout: 404
4+
permalink: "/404.html"
5+
---

Gemfile

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
source "https://rubygems.org"
2+
3+
# Hello! This is where you manage which Jekyll version is used to run.
4+
# When you want to use a different version, change it below, save the
5+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6+
#
7+
# bundle exec jekyll serve
8+
#
9+
# This will help ensure the proper Jekyll version is running.
10+
# Happy Jekylling!
11+
#gem "jekyll", "~> 4.1.0"
12+
13+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
14+
15+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
16+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
17+
gem "github-pages", group: :jekyll_plugins
18+
19+
# If you have any plugins, put them here!
20+
group :jekyll_plugins do
21+
gem 'jekyll-feed', '~> 0.13'
22+
gem 'jekyll-sitemap', '~> 1.4'
23+
gem 'jekyll-compose', '~> 0.12.0'
24+
gem 'jekyll-postfiles', '~> 3.1'
25+
end
26+
27+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
28+
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
29+
30+
# Performance-booster for watching directories on Windows
31+
gem "wdm", "~> 0.1.0" if Gem.win_platform?
32+
33+
gem "webrick", "~> 1.8"

_config.yml

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# Site settings
2+
title: Window5 Homepage # site title
3+
description: >- # site description
4+
Thinbs
5+
lang: en-US # default lang
6+
timezone: Asia/Jakarta # set your timezone
7+
image: assets/img/ogp.png # This image used for Open Graph more info https://ogp.me/
8+
repo: https://github.com/Window5000/window5000.github.io # site repo [optional]
9+
mode: dark # default theme "dark" | "light"
10+
11+
# Profile settings
12+
author:
13+
name: Window5 # author name
14+
bio: >- # tell to the world
15+
things
16+
username: Window5 # general username
17+
github: Window5000 # github username
18+
twitter: n/a # twitter username
19+
facebook: n/a # facebook username
20+
email: [email protected] # email adress
21+
avatar: /assets/img/avatar.jpg # change with your own avatar
22+
23+
# URL settings
24+
url: "https://window5000.github.io" #
25+
baseurl:
26+
permalink: /:title/
27+
google_analytics: # leave it blank if not wish
28+
fb_appid:
29+
30+
# Collection setting
31+
collections:
32+
posts:
33+
output: true
34+
35+
# Markdown settings
36+
markdown: kramdown
37+
highlighter: rouge
38+
kramdown:
39+
syntax_highlighter: rouge
40+
41+
# Default front matter
42+
defaults:
43+
- scope:
44+
path: ""
45+
values:
46+
layout: post
47+
comments: false
48+
49+
# Jekyll Compose default front matter
50+
jekyll_compose:
51+
post_default_front_matter:
52+
modified:
53+
tags: []
54+
description:
55+
draft_default_front_matter:
56+
modified:
57+
tags: []
58+
description:
59+
60+
# Homepage limit posts
61+
number_of_posts: 5
62+
63+
# Build settings
64+
# theme: klise
65+
sass:
66+
style: compressed
67+
68+
include:
69+
- _redirects
70+
- .htaccess
71+
72+
exclude:
73+
- CNAME
74+
- Gemfile
75+
- Gemfile.lock
76+
- LICENSE
77+
- CHANGELOG.md
78+
- README.md
79+
- node_modules
80+
- CODE_OF_CONDUCT.md
81+
- CONTRIBUTING.md
82+
- lighthouse.png
83+
- klise-*.gem
84+
- klise.gemspec
85+
86+
# Plugins
87+
plugins:
88+
- jekyll-feed
89+
- jekyll-sitemap
90+
- jekyll-postfiles

_data/menus.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
- title: home
2+
url: /
3+
external: false
4+
5+
- title: archive
6+
url: /archive/
7+
external: false
8+
9+
- title: about
10+
url: /about/
11+
external: false # set true if you using external link, see below
12+
13+
# Example:
14+
# - title: github
15+
# url: https://github.com/piharpi/jekyll-klise
16+
# external: true

_includes/anchor_headings.html

+105
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
{% capture headingsWorkspace %}
2+
{% comment %}
3+
Version 1.0.4
4+
https://github.com/allejo/jekyll-anchor-headings
5+
6+
"Be the pull request you wish to see in the world." ~Ben Balter
7+
8+
Usage:
9+
{% include anchor_headings.html html=content %}
10+
11+
Parameters:
12+
* html (string) - the HTML of compiled markdown generated by kramdown in Jekyll
13+
14+
Optional Parameters:
15+
* beforeHeading (bool) : false - Set to true if the anchor should be placed _before_ the heading's content
16+
* anchorAttrs (string) : '' - Any custom HTML attributes that will be added to the `<a>` tag; you may NOT use `href`, `class` or `title`
17+
* anchorBody (string) : '' - The content that will be placed inside the anchor; the `%heading%` placeholder is available
18+
* anchorClass (string) : '' - The class(es) that will be used for each anchor. Separate multiple classes with a space
19+
* anchorTitle (string) : '' - The `title` attribute that will be used for anchors
20+
* h_min (int) : 1 - The minimum header level to build an anchor for; any header lower than this value will be ignored
21+
* h_max (int) : 6 - The maximum header level to build an anchor for; any header greater than this value will be ignored
22+
* bodyPrefix (string) : '' - Anything that should be inserted inside of the heading tag _before_ its anchor and content
23+
* bodySuffix (string) : '' - Anything that should be inserted inside of the heading tag _after_ its anchor and content
24+
25+
Output:
26+
The original HTML with the addition of anchors inside of all of the h1-h6 headings.
27+
{% endcomment %}
28+
29+
{% assign minHeader = include.h_min | default: 1 %}
30+
{% assign maxHeader = include.h_max | default: 6 %}
31+
{% assign beforeHeading = include.beforeHeading %}
32+
{% assign nodes = include.html | split: '<h' %}
33+
34+
{% capture edited_headings %}{% endcapture %}
35+
36+
{% for _node in nodes %}
37+
{% capture node %}{{ _node | strip }}{% endcapture %}
38+
39+
{% if node == "" %}
40+
{% continue %}
41+
{% endif %}
42+
43+
{% assign nextChar = node | replace: '"', '' | strip | slice: 0, 1 %}
44+
{% assign headerLevel = nextChar | times: 1 %}
45+
46+
<!-- If the level is cast to 0, it means it's not a h1-h6 tag, so let's try to fix it -->
47+
{% if headerLevel == 0 %}
48+
{% if nextChar != '<' and nextChar != '' %}
49+
{% capture node %}<h{{ node }}{% endcapture %}
50+
{% endif %}
51+
52+
{% capture edited_headings %}{{ edited_headings }}{{ node }}{% endcapture %}
53+
{% continue %}
54+
{% endif %}
55+
56+
{% assign _workspace = node | split: '</h' %}
57+
{% assign _idWorkspace = _workspace[0] | split: 'id="' %}
58+
{% assign _idWorkspace = _idWorkspace[1] | split: '"' %}
59+
{% assign html_id = _idWorkspace[0] %}
60+
61+
{% capture _hAttrToStrip %}{{ _workspace[0] | split: '>' | first }}>{% endcapture %}
62+
{% assign header = _workspace[0] | replace: _hAttrToStrip, '' %}
63+
64+
<!-- Build the anchor to inject for our heading -->
65+
{% capture anchor %}{% endcapture %}
66+
67+
{% if html_id and headerLevel >= minHeader and headerLevel <= maxHeader %}
68+
{% capture anchor %}href="#{{ html_id }}"{% endcapture %}
69+
70+
{% if include.anchorClass %}
71+
{% capture anchor %}{{ anchor }} class="{{ include.anchorClass }}"{% endcapture %}
72+
{% endif %}
73+
74+
{% if include.anchorTitle %}
75+
{% capture anchor %}{{ anchor }} title="{{ include.anchorTitle | replace: '%heading%', header }}"{% endcapture %}
76+
{% endif %}
77+
78+
{% if include.anchorAttrs %}
79+
{% capture anchor %}{{ anchor }} {{ include.anchorAttrs }}{% endcapture %}
80+
{% endif %}
81+
82+
{% capture anchor %}<a {{ anchor }}>{{ include.anchorBody | replace: '%heading%', header | default: '' }}</a>{% endcapture %}
83+
84+
<!-- In order to prevent adding extra space after a heading, we'll let the 'anchor' value contain it -->
85+
{% if beforeHeading %}
86+
{% capture anchor %}{{ anchor }} {% endcapture %}
87+
{% else %}
88+
{% capture anchor %} {{ anchor }}{% endcapture %}
89+
{% endif %}
90+
{% endif %}
91+
92+
{% capture new_heading %}
93+
<h{{ _hAttrToStrip }}
94+
{{ include.bodyPrefix }}
95+
{% if beforeHeading %}
96+
{{ anchor }}{{ header }}
97+
{% else %}
98+
{{ header }}{{ anchor }}
99+
{% endif %}
100+
{{ include.bodySuffix }}
101+
</h{{ _workspace | last }}
102+
{% endcapture %}
103+
{% capture edited_headings %}{{ edited_headings }}{{ new_heading }}{% endcapture %}
104+
{% endfor %}
105+
{% endcapture %}{% assign headingsWorkspace = '' %}{{ edited_headings | strip }}

_includes/author.html

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<div class="author">
2+
<img
3+
class="author-avatar"
4+
src="{{ site.author.avatar }}"
5+
alt="{{ site.author.username }}"
6+
/>
7+
<h2 class="author-name">{{ site.author.name }}</h2>
8+
<p class="author-bio">{{ site.author.bio }}</p>
9+
</div>

_includes/comments.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<!-- unnecessary file, however you can still use for comment section, e.g disqus -->
2+
<script
3+
src="https://utteranc.es/client.js"
4+
repo="username/reponame"
5+
issue-term="pathname"
6+
label="✨ comment ✨"
7+
theme="github-light"
8+
crossorigin="anonymous"
9+
async
10+
></script>

_includes/footer.html

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<footer class="footer">
2+
<a class="footer_item" href="/thanks">ack.</a>
3+
<a class="footer_item" href="javascript::void(0)">resume</a>
4+
<a class="footer_item" href="/feed.xml">rss</a>
5+
<span class="footer_item">&copy; {{ site.time | date: "%Y" }}</span>
6+
<small class="footer_copyright">
7+
<!-- Klisé Theme: https://github.com/piharpi/jekyll-klise -->
8+
<a
9+
href="https://github.com/piharpi/jekyll-klise"
10+
target="_blank"
11+
rel="noreferrer noopener"
12+
>klisé</a
13+
>
14+
theme on
15+
<a href="https://jekyllrb.com" target="_blank" rel="noreferrer noopener"
16+
>jekyll</a
17+
>
18+
</small>
19+
</footer>
20+
<script src="/assets/js/main.js" defer="defer"></script>
21+
{%- if site.google_analytics -%}
22+
<!-- Google tag (gtag.js) -->
23+
<script
24+
async
25+
src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"
26+
></script>
27+
<script>
28+
window.dataLayer = window.dataLayer || [];
29+
function gtag() {
30+
dataLayer.push(arguments);
31+
}
32+
gtag("js", new Date());
33+
34+
gtag("config", "{{ site.google_analytics }}");
35+
</script>
36+
{%- endif -%}
37+
{%- if page.url == '/archive/' -%}
38+
<script src="/assets/js/search.min.js"></script>
39+
<script>
40+
var sjs = SimpleJekyllSearch({
41+
searchInput: document.getElementById('search-input'),
42+
resultsContainer: document.getElementById('search-results'),
43+
json: '/assets/search.json',
44+
});
45+
</script>
46+
{%- endif -%}

0 commit comments

Comments
 (0)