jekyll-theme-profile 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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +228 -0
- data/_config.yml +65 -0
- data/_includes/footer.html +3 -0
- data/_includes/header.html +121 -0
- data/_includes/link-card.html +38 -0
- data/_includes/links.html +7 -0
- data/_includes/masthead.html +58 -0
- data/_includes/nav.html +53 -0
- data/_includes/post-card.html +15 -0
- data/_includes/posts.html +10 -0
- data/_includes/repo-card.html +39 -0
- data/_includes/repositories.html +25 -0
- data/_includes/social.html +139 -0
- data/_layouts/default.html +97 -0
- data/_layouts/home.html +33 -0
- data/_layouts/page.html +7 -0
- data/_layouts/paginate.html +47 -0
- data/_layouts/post.html +25 -0
- data/_sass/_highlight-syntax.scss +66 -0
- data/_sass/_language-colors.scss +1443 -0
- data/_sass/_main.scss +45 -0
- data/_sass/jekyll-theme-profile.scss +5 -0
- data/assets/blog/index.html +4 -0
- data/assets/brands/behance.svg +1 -0
- data/assets/brands/docker.svg +1 -0
- data/assets/brands/dribbble.svg +1 -0
- data/assets/brands/facebook.svg +1 -0
- data/assets/brands/hackerrank.svg +1 -0
- data/assets/brands/instagram.svg +1 -0
- data/assets/brands/keybase.svg +1 -0
- data/assets/brands/linkedin.svg +1 -0
- data/assets/brands/mastodon.svg +1 -0
- data/assets/brands/medium.svg +1 -0
- data/assets/brands/stackoverflow.svg +1 -0
- data/assets/brands/telegram.svg +1 -0
- data/assets/brands/twitter.svg +1 -0
- data/assets/brands/unsplash.svg +1 -0
- data/assets/brands/vk.svg +1 -0
- data/assets/brands/vscode.svg +1 -0
- data/assets/brands/youtube.svg +1 -0
- data/assets/css/style.scss +4 -0
- data/assets/img/blog.png +0 -0
- data/assets/img/favicon.ico +0 -0
- data/assets/img/icon-sidebar.png +0 -0
- data/assets/img/icon-stacked.png +0 -0
- data/assets/img/icon-topbar.png +0 -0
- data/assets/img/links.png +0 -0
- data/assets/img/octocat.png +0 -0
- data/assets/img/repositories.png +0 -0
- data/assets/img/sidebar-laptop.png +0 -0
- data/assets/img/sidebar-phone.png +0 -0
- data/assets/img/sidebar-preview.png +0 -0
- data/assets/img/sidebar-tablet.png +0 -0
- data/assets/img/social-media.png +0 -0
- data/assets/img/stacked-laptop.png +0 -0
- data/assets/img/stacked-phone.png +0 -0
- data/assets/img/stacked-preview.png +0 -0
- data/assets/img/stacked-tablet.png +0 -0
- data/assets/img/tobpar-phone.png +0 -0
- data/assets/img/topbar-laptop.png +0 -0
- data/assets/img/topbar-preview.png +0 -0
- data/assets/img/topbar-tablet.png +0 -0
- data/assets/img/user-image.jpg +0 -0
- metadata +197 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<div class="d-sm-flex flex-wrap gutter-condensed mb-4">
|
|
2
|
+
{%- if site.repositories.sort_by == 'stars' %}
|
|
3
|
+
{%- assign sort_order = 'stargazers_count', 'last' %}
|
|
4
|
+
{%- else %}
|
|
5
|
+
{%- assign sort_order = 'pushed_at' %}
|
|
6
|
+
{%- endif %}
|
|
7
|
+
|
|
8
|
+
{%- if site.repositories.exclude.archived && site.repositories.exclude.forks %}
|
|
9
|
+
{%- assign filtered_repos = site.github.public_repositories | where:'archived', false | where:'fork', false | sort: sort_order | reverse %}
|
|
10
|
+
{%- elsif site.repositories.exclude.archived %}
|
|
11
|
+
{%- assign filtered_repos = site.github.public_repositories | where:'archived', false | sort: sort_order | reverse %}
|
|
12
|
+
{%- elsif site.repositories.exclude.forks %}
|
|
13
|
+
{%- assign filtered_repos = site.github.public_repositories | where:'fork', false | sort: sort_order | reverse %}
|
|
14
|
+
{%- else %}
|
|
15
|
+
{%- assign filtered_repos = site.github.public_repositories | sort: sort_order | reverse %}
|
|
16
|
+
{%- endif %}
|
|
17
|
+
|
|
18
|
+
{%- for repository in filtered_repos | limit: site.repositories.limit %}
|
|
19
|
+
{%- unless site.repositories.exclude.repositories contains repository.name %}
|
|
20
|
+
<div class="col-sm-6 col-md-12 col-lg-6 col-xl-6 mb-3">
|
|
21
|
+
{%- include repo-card.html %}
|
|
22
|
+
</div>
|
|
23
|
+
{%- endunless %}
|
|
24
|
+
{%- endfor %}
|
|
25
|
+
</div>
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
<div class="d-flex flex-wrap flex-items-start flex-justify-center mt-1">
|
|
2
|
+
|
|
3
|
+
{%- if site.social_media.behance %}
|
|
4
|
+
<div class="mr-3">
|
|
5
|
+
<a href="https://www.behance.net/{{ site.social_media.behance }}" class="tooltipped tooltipped-se" aria-label="Behance: {{ site.social_media.behance }}">
|
|
6
|
+
<img src="{{ site.baseurl}}/assets/brands/behance.svg">
|
|
7
|
+
</a>
|
|
8
|
+
</div>
|
|
9
|
+
{%- endif %}
|
|
10
|
+
|
|
11
|
+
{%- if site.social_media.dribbble %}
|
|
12
|
+
<div class="mr-3">
|
|
13
|
+
<a href="https://dribbble.com/{{ site.social_media.dribbble }}" class="tooltipped tooltipped-se" aria-label="Dribbble: {{ site.social_media.dribbble }}">
|
|
14
|
+
<img src="{{ site.baseurl}}/assets/brands/dribbble.svg">
|
|
15
|
+
</a>
|
|
16
|
+
</div>
|
|
17
|
+
{%- endif %}
|
|
18
|
+
|
|
19
|
+
{%- if site.social_media.docker %}
|
|
20
|
+
<div class="mr-3">
|
|
21
|
+
<a href="https://hub.docker.com/u/{{ site.social_media.docker }}" class="tooltipped tooltipped-se" aria-label="Docker: {{ site.social_media.docker }}">
|
|
22
|
+
<img src="{{ site.baseurl}}/assets/brands/docker.svg">
|
|
23
|
+
</a>
|
|
24
|
+
</div>
|
|
25
|
+
{%- endif %}
|
|
26
|
+
|
|
27
|
+
{%- if site.social_media.facebook %}
|
|
28
|
+
<div class="mr-3">
|
|
29
|
+
<a href="https://www.facebook.com/{{ site.social_media.facebook }}" class="tooltipped tooltipped-se" aria-label="Facebook: {{ site.social_media.facebook }}">
|
|
30
|
+
<img src="{{ site.baseurl}}/assets/brands/facebook.svg">
|
|
31
|
+
</a>
|
|
32
|
+
</div>
|
|
33
|
+
{%- endif %}
|
|
34
|
+
|
|
35
|
+
{%- if site.social_media.hackerrank %}
|
|
36
|
+
<div class="mr-3">
|
|
37
|
+
<a href="https://www.hackerrank.com/{{ site.social_media.hackerrank }}" class="tooltipped tooltipped-se" aria-label="HackerRank: {{ site.social_media.hackerrank }}">
|
|
38
|
+
<img src="{{ site.baseurl}}/assets/brands/hackerrank.svg">
|
|
39
|
+
</a>
|
|
40
|
+
</div>
|
|
41
|
+
{%- endif %}
|
|
42
|
+
|
|
43
|
+
{%- if site.social_media.instagram %}
|
|
44
|
+
<div class="mr-3">
|
|
45
|
+
<a href="https://www.instagram.com/{{ site.social_media.instagram }}" class="tooltipped tooltipped-se" aria-label="Instagram: {{ site.social_media.instagram }}">
|
|
46
|
+
<img src="{{ site.baseurl}}/assets/brands/instagram.svg">
|
|
47
|
+
</a>
|
|
48
|
+
</div>
|
|
49
|
+
{%- endif %}
|
|
50
|
+
|
|
51
|
+
{%- if site.social_media.keybase %}
|
|
52
|
+
<div class="mr-3">
|
|
53
|
+
<a href="https://keybase.io/{{ site.social_media.keybase }}" class="tooltipped tooltipped-se" aria-label="Keybase: {{ site.social_media.keybase }}">
|
|
54
|
+
<img src="{{ site.baseurl}}/assets/brands/keybase.svg">
|
|
55
|
+
</a>
|
|
56
|
+
</div>
|
|
57
|
+
{%- endif %}
|
|
58
|
+
|
|
59
|
+
{%- if site.social_media.linkedin %}
|
|
60
|
+
<div class="mr-3">
|
|
61
|
+
<a href="https://www.linkedin.com/in/{{ site.social_media.linkedin }}" class="tooltipped tooltipped-se" aria-label="LinkedIn: {{ site.social_media.linkedin }}">
|
|
62
|
+
<img src="{{ site.baseurl}}/assets/brands/linkedin.svg">
|
|
63
|
+
</a>
|
|
64
|
+
</div>
|
|
65
|
+
{%- endif %}
|
|
66
|
+
|
|
67
|
+
{%- if site.social_media.mastodon %}
|
|
68
|
+
<div class="mr-3">
|
|
69
|
+
<a href="https://mstdn.io/{{ site.social_media.mastodon }}" class="tooltipped tooltipped-se" aria-label="Mastodon: {{ site.social_media.mastodon }}">
|
|
70
|
+
<img src="{{ site.baseurl}}/assets/brands/mastodon.svg">
|
|
71
|
+
</a>
|
|
72
|
+
</div>
|
|
73
|
+
{%- endif %}
|
|
74
|
+
|
|
75
|
+
{%- if site.social_media.medium %}
|
|
76
|
+
<div class="mr-3">
|
|
77
|
+
<a href="https://medium.com/@{{ site.social_media.medium }}" class="tooltipped tooltipped-se" aria-label="Medium: {{ site.social_media.medium }}">
|
|
78
|
+
<img src="{{ site.baseurl}}/assets/brands/medium.svg">
|
|
79
|
+
</a>
|
|
80
|
+
</div>
|
|
81
|
+
{%- endif %}
|
|
82
|
+
|
|
83
|
+
{%- if site.social_media.stackoverflow %}
|
|
84
|
+
<div class="mr-3">
|
|
85
|
+
<a href="https://stackoverflow.com/u/{{ site.social_media.stackoverflow }}" class="tooltipped tooltipped-se" aria-label="Stack Overflow: {{ site.social_media.stackoverflow }}">
|
|
86
|
+
<img src="{{ site.baseurl}}/assets/brands/stackoverflow.svg">
|
|
87
|
+
</a>
|
|
88
|
+
</div>
|
|
89
|
+
{%- endif %}
|
|
90
|
+
|
|
91
|
+
{%- if site.social_media.telegram %}
|
|
92
|
+
<div class="mr-3">
|
|
93
|
+
<a href="https://t.me/{{ site.social_media.telegram }}" class="tooltipped tooltipped-se" aria-label="Telegram: {{ site.social_media.telegram }}">
|
|
94
|
+
<img src="{{ site.baseurl}}/assets/brands/telegram.svg">
|
|
95
|
+
</a>
|
|
96
|
+
</div>
|
|
97
|
+
{%- endif %}
|
|
98
|
+
|
|
99
|
+
{%- if site.social_media.twitter %}
|
|
100
|
+
<div class="mr-3">
|
|
101
|
+
<a href="https://www.twitter.com/{{ site.social_media.twitter }}" class="tooltipped tooltipped-se" aria-label="Twitter: {{ site.social_media.twitter }}">
|
|
102
|
+
<img src="{{ site.baseurl}}/assets/brands/twitter.svg">
|
|
103
|
+
</a>
|
|
104
|
+
</div>
|
|
105
|
+
{%- endif %}
|
|
106
|
+
|
|
107
|
+
{%- if site.social_media.unsplash %}
|
|
108
|
+
<div class="mr-3">
|
|
109
|
+
<a href="https://www.unsplash.com/{{ site.social_media.unsplash }}" class="tooltipped tooltipped-se" aria-label="Unsplash: {{ site.social_media.unsplash }}">
|
|
110
|
+
<img src="{{ site.baseurl}}/assets/brands/unsplash.svg">
|
|
111
|
+
</a>
|
|
112
|
+
</div>
|
|
113
|
+
{%- endif %}
|
|
114
|
+
|
|
115
|
+
{%- if site.social_media.vk %}
|
|
116
|
+
<div class="mr-3">
|
|
117
|
+
<a href="https://vk.com/{{ site.social_media.vk }}" class="tooltipped tooltipped-se" aria-label="VK: {{ site.social_media.vk }}">
|
|
118
|
+
<img src="{{ site.baseurl}}/assets/brands/vk.svg">
|
|
119
|
+
</a>
|
|
120
|
+
</div>
|
|
121
|
+
{%- endif %}
|
|
122
|
+
|
|
123
|
+
{%- if site.social_media.vscode %}
|
|
124
|
+
<div class="mr-3">
|
|
125
|
+
<a href="https://marketplace.visualstudio.com/publishers/{{ site.social_media.vscode }}" class="tooltipped tooltipped-se" aria-label="VS Code Marketplace: {{ site.social_media.vscode }}">
|
|
126
|
+
<img src="{{ site.baseurl}}/assets/brands/vscode.svg">
|
|
127
|
+
</a>
|
|
128
|
+
</div>
|
|
129
|
+
{%- endif %}
|
|
130
|
+
|
|
131
|
+
{%- if site.social_media.youtube %}
|
|
132
|
+
<div class="mr-3">
|
|
133
|
+
<a href="https://www.youtube.com/{{ site.social_media.youtube }}" class="tooltipped tooltipped-se" aria-label="YouTube: {{ site.social_media.youtube }}">
|
|
134
|
+
<img src="{{ site.baseurl}}/assets/brands/youtube.svg">
|
|
135
|
+
</a>
|
|
136
|
+
</div>
|
|
137
|
+
{%- endif %}
|
|
138
|
+
|
|
139
|
+
</div>
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{%- assign user = site.github.owner %}
|
|
2
|
+
|
|
3
|
+
{%- if page.style %}
|
|
4
|
+
{%- assign style = page.style %}
|
|
5
|
+
{%- else %}
|
|
6
|
+
{%- assign style = site.style %}
|
|
7
|
+
{%- endif %}
|
|
8
|
+
|
|
9
|
+
{%- if page.breadcrumbs %}
|
|
10
|
+
{%- assign breadcrumbs = page.breadcrumbs %}
|
|
11
|
+
{%- else %}
|
|
12
|
+
{%- assign breadcrumbs = false %}
|
|
13
|
+
{%- endif %}
|
|
14
|
+
|
|
15
|
+
{%- if site.title %}
|
|
16
|
+
{%- assign name = site.title %}
|
|
17
|
+
{%- elsif user.name %}
|
|
18
|
+
{%- assign name = user.name %}
|
|
19
|
+
{%- else %}
|
|
20
|
+
{%- assign name = user.login %}
|
|
21
|
+
{%- endif %}
|
|
22
|
+
|
|
23
|
+
{%- if site.image %}
|
|
24
|
+
{%- assign user_img = site.image %}
|
|
25
|
+
{%- else %}
|
|
26
|
+
{%- assign user_img = user.avatar_url %}
|
|
27
|
+
{%- endif %}
|
|
28
|
+
|
|
29
|
+
{%- if site.metadata %}
|
|
30
|
+
{%- assign metadata = site.metadata %}
|
|
31
|
+
{%- else %}
|
|
32
|
+
{%- assign metadata = true %}
|
|
33
|
+
{%- endif %}
|
|
34
|
+
|
|
35
|
+
<!doctype html>
|
|
36
|
+
<html class="min-height-full min-width" data-color-mode="auto" data-light-theme="light" data-dark-theme="dark_dimmed">
|
|
37
|
+
|
|
38
|
+
{%- include header.html %}
|
|
39
|
+
|
|
40
|
+
<body class="min-height-full">
|
|
41
|
+
{%- if style == 'stacked' %}
|
|
42
|
+
<div class="container-lg p-responsive py-3">
|
|
43
|
+
<div class="text-center">
|
|
44
|
+
{%- include nav.html breadcrumbs=breadcrumbs %}
|
|
45
|
+
{%- include masthead.html metadata=metadata %}
|
|
46
|
+
</div>
|
|
47
|
+
<div class="p-responsive mb-6">
|
|
48
|
+
{{ content }}
|
|
49
|
+
</div>
|
|
50
|
+
</div>
|
|
51
|
+
{%- elsif style == 'sidebar' %}
|
|
52
|
+
<div class="container-lg d-md-flex min-height-full border-md-bottom">
|
|
53
|
+
<div
|
|
54
|
+
class="flex-self-stretch border-gray-light col-md-4 col-lg-3 px-4 py-6 text-center">
|
|
55
|
+
{%- include masthead.html metadata=metadata %}
|
|
56
|
+
</div>
|
|
57
|
+
<div class="col-md-8 col-lg-9 border-top border-md-top-0 px-4 ">
|
|
58
|
+
<div class="container-lg py-3 ml-0">
|
|
59
|
+
{%- include nav.html breadcrumbs=breadcrumbs %}
|
|
60
|
+
<div class="p-responsive mb-6">
|
|
61
|
+
{{ content }}
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
65
|
+
</div>
|
|
66
|
+
{%- else %}
|
|
67
|
+
<div class="Header">
|
|
68
|
+
<div class="Header-item">
|
|
69
|
+
<a href="{{ site.baseurl }}/" class="Header-link f4 d-flex flex-items-center">
|
|
70
|
+
{% octicon mark-github height:32 %}
|
|
71
|
+
</a>
|
|
72
|
+
</div>
|
|
73
|
+
<div class="Header-item Header-item--full">
|
|
74
|
+
{{ name }}
|
|
75
|
+
</div>
|
|
76
|
+
<div class="Header-item">
|
|
77
|
+
{%- include social.html %}
|
|
78
|
+
</div>
|
|
79
|
+
<div class="Header-item mr-0 ml-3">
|
|
80
|
+
<a href="https://github.com/{{ user.login }}" class="Header-link f4 d-flex flex-items-center">
|
|
81
|
+
<img class="avatar img-cover" height="20" alt="{{ name }}" src="{{ user_img | relative_url }}" width="20">
|
|
82
|
+
</a>
|
|
83
|
+
</div>
|
|
84
|
+
</div>
|
|
85
|
+
|
|
86
|
+
<div class="container-lg py-3">
|
|
87
|
+
{%- include nav.html breadcrumbs=breadcrumbs %}
|
|
88
|
+
<div class="p-responsive mb-6">
|
|
89
|
+
{{ content }}
|
|
90
|
+
</div>
|
|
91
|
+
</div>
|
|
92
|
+
{%- endif %}
|
|
93
|
+
|
|
94
|
+
{%- include footer.html %}
|
|
95
|
+
</body>
|
|
96
|
+
|
|
97
|
+
</html>
|
data/_layouts/home.html
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
{%- assign posts_total = site.posts | size %}
|
|
5
|
+
{%- if site.posts_limit %}
|
|
6
|
+
{%- assign posts_limit = site.posts_limit %}
|
|
7
|
+
{%- else %}
|
|
8
|
+
{%- assign posts_limit = posts_total %}
|
|
9
|
+
{%- endif %}
|
|
10
|
+
|
|
11
|
+
{%- unless content == "" %}
|
|
12
|
+
{{ content }}
|
|
13
|
+
{%- endunless %}
|
|
14
|
+
|
|
15
|
+
{%- if site.links %}
|
|
16
|
+
<h2 class="mb-3">Links</h2>
|
|
17
|
+
{%- include links.html %}
|
|
18
|
+
{%- endif %}
|
|
19
|
+
|
|
20
|
+
{%- unless posts_total == 0 %}
|
|
21
|
+
<h2 class="mb-3">Blog</h2>
|
|
22
|
+
{%- include posts.html limit=posts_limit %}
|
|
23
|
+
{%- if site.posts.size > post_limit %}
|
|
24
|
+
<div>
|
|
25
|
+
<a href="{{ site.paginate_path | relative_url | replace: 'page:num', '' }}" class="btn btn-block mb-2">Read more</a>
|
|
26
|
+
</div>
|
|
27
|
+
{%- endif %}
|
|
28
|
+
{%- endunless %}
|
|
29
|
+
|
|
30
|
+
{%- if site.repositories %}
|
|
31
|
+
<h2 class="mb-3">Repositories</h2>
|
|
32
|
+
{%- include repositories.html %}
|
|
33
|
+
{%- endif %}
|
data/_layouts/page.html
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: page
|
|
3
|
+
---
|
|
4
|
+
{{ content }}
|
|
5
|
+
<!-- This loops through the paginated posts -->
|
|
6
|
+
{%- for post in paginator.posts %}
|
|
7
|
+
<h1><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h1>
|
|
8
|
+
<p class="author">
|
|
9
|
+
<span class="date">Published {{ post.date | date: "%Y-%m-%d" }}</span>
|
|
10
|
+
<span class="author">{{ post.author }}</span>
|
|
11
|
+
</p>
|
|
12
|
+
<div class="content mb-6">
|
|
13
|
+
{{ post.excerpt }}
|
|
14
|
+
</div>
|
|
15
|
+
<div>
|
|
16
|
+
<a href="{{ post.url | relative_url }}" class="btn btn-block mb-2">Read more</a>
|
|
17
|
+
</div>
|
|
18
|
+
{% endfor %}
|
|
19
|
+
|
|
20
|
+
<!-- Pagination links -->
|
|
21
|
+
<div class="paginate-container">
|
|
22
|
+
<div role="navigation" aria-label="Pagination" class="d-flex d-md-inline-block pagination">
|
|
23
|
+
{%- if paginator.previous_page %}
|
|
24
|
+
<a class="previous_page" rel="prev" href="{{ paginator.previous_page_path | relative_url }}"
|
|
25
|
+
aria-disabled="false">Previous</a>
|
|
26
|
+
{% else %}
|
|
27
|
+
<span class="previous_page disabled" aria-disabled="true">Previous</span>
|
|
28
|
+
{% endif %}
|
|
29
|
+
|
|
30
|
+
{%- for blog_page in (1..paginator.total_pages) %}
|
|
31
|
+
{%- if blog_page == paginator.page %}
|
|
32
|
+
<a href="{{ page.url | relative_url }}" aria-label="{{ blog_page }}" aria-current="page">{{ blog_page }}</a>
|
|
33
|
+
{% elsif blog_page == 1 %}
|
|
34
|
+
<a href="{{ site.paginate_path | relative_url | replace: 'page:num', '' }}" aria-label="{{ blog_page }}">{{ blog_page }}</a>
|
|
35
|
+
{% else %}
|
|
36
|
+
<a href="{{ site.paginate_path | relative_url | replace: ':num', blog_page }}" aria-label="{{ blog_page }}">{{ blog_page }}</a>
|
|
37
|
+
{%- endif %}
|
|
38
|
+
{%- endfor %}
|
|
39
|
+
|
|
40
|
+
{%- if paginator.next_page %}
|
|
41
|
+
<a class="next_page" rel="next" href="{{ paginator.next_page_path | relative_url }}"
|
|
42
|
+
aria-disabled="false">Next</a>
|
|
43
|
+
{% else %}
|
|
44
|
+
<span class="next_page disabled" aria-disabled="true">Next</span>
|
|
45
|
+
{% endif %}
|
|
46
|
+
</div>
|
|
47
|
+
</div>
|
data/_layouts/post.html
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: page
|
|
3
|
+
---
|
|
4
|
+
<p class="mb-5">Published {{ page.date | date: "%b %d, %Y"}}</p>
|
|
5
|
+
<div class="markdown-body">
|
|
6
|
+
{{ content }}
|
|
7
|
+
</div>
|
|
8
|
+
|
|
9
|
+
<!-- Pagination links -->
|
|
10
|
+
<div class="paginate-container">
|
|
11
|
+
<div role="navigation" aria-label="Pagination" class="d-flex d-md-inline-block pagination">
|
|
12
|
+
{% if page.previous.url %}
|
|
13
|
+
<a class="previous_page" rel="prev" href="{{ page.previous.url | relative_url }}" aria-disabled="false">{{page.previous.title}}</a>
|
|
14
|
+
{% else %}
|
|
15
|
+
<span class="previous_page disabled" aria-disabled="true">Previous</span>
|
|
16
|
+
{% endif %}
|
|
17
|
+
|
|
18
|
+
{% if page.next.url %}
|
|
19
|
+
<a class="next_page" rel="next" href="{{ page.next.url | relative_url }}"
|
|
20
|
+
aria-disabled="false">{{page.next.title}}</a>
|
|
21
|
+
{% else %}
|
|
22
|
+
<span class="next_page disabled" aria-disabled="true">Next</span>
|
|
23
|
+
{% endif %}
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
.highlight { width: 100%; overflow: auto; background-color: var(--color-canvas-inset) !important; padding: 8px; }
|
|
2
|
+
.highlight .c { color: #999988; font-style: italic } /* Comment */
|
|
3
|
+
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
|
|
4
|
+
.highlight .k { font-weight: bold } /* Keyword */
|
|
5
|
+
.highlight .o { font-weight: bold } /* Operator */
|
|
6
|
+
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */
|
|
7
|
+
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */
|
|
8
|
+
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */
|
|
9
|
+
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
|
|
10
|
+
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
|
|
11
|
+
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
|
|
12
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
|
13
|
+
.highlight .gr { color: #aa0000 } /* Generic.Error */
|
|
14
|
+
.highlight .gh { color: #999999 } /* Generic.Heading */
|
|
15
|
+
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
|
|
16
|
+
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
|
|
17
|
+
.highlight .go { color: #888888 } /* Generic.Output */
|
|
18
|
+
.highlight .gp { color: #555555 } /* Generic.Prompt */
|
|
19
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
|
20
|
+
.highlight .gu { color: #aaaaaa } /* Generic.Subheading */
|
|
21
|
+
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
|
|
22
|
+
.highlight .kc { font-weight: bold } /* Keyword.Constant */
|
|
23
|
+
.highlight .kd { font-weight: bold } /* Keyword.Declaration */
|
|
24
|
+
.highlight .kn { font-weight: bold } /* Keyword.Pseudo */
|
|
25
|
+
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */
|
|
26
|
+
.highlight .kr { font-weight: bold } /* Keyword.Reserved */
|
|
27
|
+
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */
|
|
28
|
+
.highlight .m { color: #009999 } /* Literal.Number */
|
|
29
|
+
.highlight .s { color: #d14 } /* Literal.String */
|
|
30
|
+
.highlight .na { color: #008080 } /* Name.Attribute */
|
|
31
|
+
.highlight .nb { color: #0086B3 } /* Name.Builtin */
|
|
32
|
+
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */
|
|
33
|
+
.highlight .no { color: #008080 } /* Name.Constant */
|
|
34
|
+
.highlight .ni { color: #800080 } /* Name.Entity */
|
|
35
|
+
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */
|
|
36
|
+
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */
|
|
37
|
+
.highlight .nn { color: #555555 } /* Name.Namespace */
|
|
38
|
+
.highlight .nt { color: #0969da } /* Name.Tag */
|
|
39
|
+
.highlight .nv { color: #008080 } /* Name.Variable */
|
|
40
|
+
.highlight .ow { font-weight: bold } /* Operator.Word */
|
|
41
|
+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
|
|
42
|
+
.highlight .mf { color: #009999 } /* Literal.Number.Float */
|
|
43
|
+
.highlight .mh { color: #009999 } /* Literal.Number.Hex */
|
|
44
|
+
.highlight .mi { color: #009999 } /* Literal.Number.Integer */
|
|
45
|
+
.highlight .mo { color: #009999 } /* Literal.Number.Oct */
|
|
46
|
+
.highlight .sb { color: #d14 } /* Literal.String.Backtick */
|
|
47
|
+
.highlight .sc { color: #d14 } /* Literal.String.Char */
|
|
48
|
+
.highlight .sd { color: #d14 } /* Literal.String.Doc */
|
|
49
|
+
.highlight .s2 { color: #d14 } /* Literal.String.Double */
|
|
50
|
+
.highlight .se { color: #d14 } /* Literal.String.Escape */
|
|
51
|
+
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */
|
|
52
|
+
.highlight .si { color: #d14 } /* Literal.String.Interpol */
|
|
53
|
+
.highlight .sx { color: #d14 } /* Literal.String.Other */
|
|
54
|
+
.highlight .sr { color: #009926 } /* Literal.String.Regex */
|
|
55
|
+
.highlight .s1 { color: #d14 } /* Literal.String.Single */
|
|
56
|
+
.highlight .ss { color: #990073 } /* Literal.String.Symbol */
|
|
57
|
+
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */
|
|
58
|
+
.highlight .vc { color: #008080 } /* Name.Variable.Class */
|
|
59
|
+
.highlight .vg { color: #008080 } /* Name.Variable.Global */
|
|
60
|
+
.highlight .vi { color: #008080 } /* Name.Variable.Instance */
|
|
61
|
+
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
|
|
62
|
+
|
|
63
|
+
/* Make line numbers unselectable: excludes line numbers from copy-paste user ops */
|
|
64
|
+
.highlight .lineno {-webkit-user-select: none;-moz-user-select: none; -o-user-select: none;}
|
|
65
|
+
.lineno::-moz-selection {background-color: transparent;} /* Mozilla specific */
|
|
66
|
+
.lineno::selection {background-color: transparent;} /* Other major browsers */
|