jekyll-theme-handwritten 4.3.4 → 4.3.6
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 +4 -4
- data/LICENSE.txt +21 -21
- data/README.md +92 -90
- data/_config.yml +54 -54
- data/_data/images.json +2 -2
- data/_includes/disqus_comments.html +20 -20
- data/_includes/footer.html +49 -49
- data/_includes/google-analytics.html +12 -12
- data/_includes/head.html +44 -45
- data/_includes/header.html +33 -33
- data/_includes/icon-github.html +1 -1
- data/_includes/icon-github.svg +1 -1
- data/_includes/icon-twitter.html +1 -1
- data/_includes/icon-twitter.svg +1 -1
- data/_includes/navrail.html +23 -23
- data/_includes/social.html +14 -14
- data/_includes/theme_selector.html +35 -35
- data/_layouts/default.html +23 -23
- data/_layouts/home.html +80 -80
- data/_layouts/page.html +14 -14
- data/_layouts/post.html +35 -35
- data/_sass/minima/_base.scss +846 -840
- data/_sass/minima/_layout.scss +277 -271
- data/_sass/minima/_mysass.scss +289 -285
- data/_sass/minima/_syntax-highlighting.scss +68 -68
- data/_sass/minima.scss +52 -52
- data/assets/main.scss +5 -5
- data/assets/minima-social-icons.svg +33 -33
- data/assets/theme-assets/js/theme.js +27 -27
- data/assets/theme-assets/material-theme/colors.module.css +294 -294
- data/assets/theme-assets/material-theme/theme.css +5 -5
- data/assets/theme-assets/material-theme/theme.dark.css +51 -51
- data/assets/theme-assets/material-theme/theme.light.css +51 -51
- data/assets/theme-assets/material-theme/tokens.css +303 -303
- data/assets/theme-assets/material-theme/typography.module.css +150 -150
- data/assets/theme-assets/theme-fonts/CascadiaCode-Regular.woff2 +0 -0
- data/assets/theme-assets/theme-fonts/ComicShanns-Regular.woff2 +0 -0
- data/assets/theme-assets/theme-fonts/Excalifont-Regular.woff2 +0 -0
- data/assets/theme-assets/theme-fonts/Lexend-Regular.ttf +0 -0
- data/assets/theme-assets/theme-fonts/LilitaOne-Regular.ttf +0 -0
- data/assets/theme-assets/theme-fonts/Virgil-Regular.woff2 +0 -0
- data/assets/theme-assets/theme-fonts/comic shanns.otf +0 -0
- data/assets/theme-assets/theme-icons/aboutme-small.svg +102 -102
- data/assets/theme-assets/theme-icons/aboutme.svg +9 -9
- data/assets/theme-assets/theme-icons/bookmark.svg +9 -9
- data/assets/theme-assets/theme-icons/categories-rough.svg +9 -9
- data/assets/theme-assets/theme-icons/categories2.svg +9 -9
- data/assets/theme-assets/theme-icons/divider.svg +19 -19
- data/assets/theme-assets/theme-icons/home-rough.svg +9 -9
- data/assets/theme-assets/theme-icons/home.svg +5 -5
- data/assets/theme-assets/theme-icons/home2.svg +9 -9
- data/assets/theme-assets/theme-icons/pin.svg +18 -18
- data/assets/theme-assets/theme-images/border-thick.svg +15 -15
- data/assets/theme-assets/theme-images/comp.png +0 -0
- data/assets/theme-assets/theme-images/comp.svg +9 -9
- data/assets/theme-assets/theme-images/logo.svg +9 -9
- data/assets/theme-assets/theme-images/menu.svg +9 -9
- metadata +13 -7
data/_includes/header.html
CHANGED
@@ -1,33 +1,33 @@
|
|
1
|
-
<header class="site-header" role="banner">
|
2
|
-
{%- include theme_selector.html -%}
|
3
|
-
|
4
|
-
<div class="wrapper header-container">
|
5
|
-
{%- assign default_paths = site.pages | map: 'path' -%}
|
6
|
-
{%- assign page_paths = site.header_pages | default: default_paths -%}
|
7
|
-
|
8
|
-
<a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
|
9
|
-
{%- if site.tagline -%}
|
10
|
-
<span class="tagline">{{ site.tagline }}</span>
|
11
|
-
{%- endif -%}
|
12
|
-
<!-- <img class="logo" src="{{- "assets/theme-assets/theme-images/logo.svg" | relative_url -}}"> -->
|
13
|
-
</div>
|
14
|
-
{%- if page_paths -%}
|
15
|
-
<nav class="wrapper site-nav">
|
16
|
-
<input type="checkbox" id="nav-trigger" class="nav-trigger">
|
17
|
-
<label for="nav-trigger">
|
18
|
-
<span class="menu-icon">
|
19
|
-
<img src="{{- "assets/theme-assets/theme-images/menu.svg" | relative_url -}}" alt="menu-icon">
|
20
|
-
</span>
|
21
|
-
</label>
|
22
|
-
|
23
|
-
<div class=" trigger">
|
24
|
-
{%- for path in page_paths -%}
|
25
|
-
{%- assign my_page = site.pages | where: 'path', path | first -%}
|
26
|
-
{%- if my_page.title -%}
|
27
|
-
<a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
|
28
|
-
{%- endif -%}
|
29
|
-
{%- endfor -%}
|
30
|
-
</div>
|
31
|
-
</nav>
|
32
|
-
{%- endif -%}
|
33
|
-
</header>
|
1
|
+
<header class="site-header" role="banner">
|
2
|
+
{%- include theme_selector.html -%}
|
3
|
+
|
4
|
+
<div class="wrapper header-container">
|
5
|
+
{%- assign default_paths = site.pages | map: 'path' -%}
|
6
|
+
{%- assign page_paths = site.header_pages | default: default_paths -%}
|
7
|
+
|
8
|
+
<a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
|
9
|
+
{%- if site.tagline -%}
|
10
|
+
<span class="tagline">{{ site.tagline }}</span>
|
11
|
+
{%- endif -%}
|
12
|
+
<!-- <img class="logo" src="{{- "assets/theme-assets/theme-images/logo.svg" | relative_url -}}"> -->
|
13
|
+
</div>
|
14
|
+
{%- if page_paths -%}
|
15
|
+
<nav class="wrapper site-nav">
|
16
|
+
<input type="checkbox" id="nav-trigger" class="nav-trigger">
|
17
|
+
<label for="nav-trigger">
|
18
|
+
<span class="menu-icon">
|
19
|
+
<img src="{{- "assets/theme-assets/theme-images/menu.svg" | relative_url -}}" alt="menu-icon">
|
20
|
+
</span>
|
21
|
+
</label>
|
22
|
+
|
23
|
+
<div class=" trigger">
|
24
|
+
{%- for path in page_paths -%}
|
25
|
+
{%- assign my_page = site.pages | where: 'path', path | first -%}
|
26
|
+
{%- if my_page.title -%}
|
27
|
+
<a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
|
28
|
+
{%- endif -%}
|
29
|
+
{%- endfor -%}
|
30
|
+
</div>
|
31
|
+
</nav>
|
32
|
+
{%- endif -%}
|
33
|
+
</header>
|
data/_includes/icon-github.html
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<a href="https://github.com/{{ include.username }}"><span class="icon icon--github">{% include icon-github.svg %}</span><span class="username">{{ include.username }}</span></a>
|
1
|
+
<a href="https://github.com/{{ include.username }}"><span class="icon icon--github">{% include icon-github.svg %}</span><span class="username">{{ include.username }}</span></a>
|
data/_includes/icon-github.svg
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#828282" d="M7.999,0.431c-4.285,0-7.76,3.474-7.76,7.761 c0,3.428,2.223,6.337,5.307,7.363c0.388,0.071,0.53-0.168,0.53-0.374c0-0.184-0.007-0.672-0.01-1.32 c-2.159,0.469-2.614-1.04-2.614-1.04c-0.353-0.896-0.862-1.135-0.862-1.135c-0.705-0.481,0.053-0.472,0.053-0.472 c0.779,0.055,1.189,0.8,1.189,0.8c0.692,1.186,1.816,0.843,2.258,0.645c0.071-0.502,0.271-0.843,0.493-1.037 C4.86,11.425,3.049,10.76,3.049,7.786c0-0.847,0.302-1.54,0.799-2.082C3.768,5.507,3.501,4.718,3.924,3.65 c0,0,0.652-0.209,2.134,0.796C6.677,4.273,7.34,4.187,8,4.184c0.659,0.003,1.323,0.089,1.943,0.261 c1.482-1.004,2.132-0.796,2.132-0.796c0.423,1.068,0.157,1.857,0.077,2.054c0.497,0.542,0.798,1.235,0.798,2.082 c0,2.981-1.814,3.637-3.543,3.829c0.279,0.24,0.527,0.713,0.527,1.437c0,1.037-0.01,1.874-0.01,2.129 c0,0.208,0.14,0.449,0.534,0.373c3.081-1.028,5.302-3.935,5.302-7.362C15.76,3.906,12.285,0.431,7.999,0.431z"/></svg>
|
1
|
+
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#828282" d="M7.999,0.431c-4.285,0-7.76,3.474-7.76,7.761 c0,3.428,2.223,6.337,5.307,7.363c0.388,0.071,0.53-0.168,0.53-0.374c0-0.184-0.007-0.672-0.01-1.32 c-2.159,0.469-2.614-1.04-2.614-1.04c-0.353-0.896-0.862-1.135-0.862-1.135c-0.705-0.481,0.053-0.472,0.053-0.472 c0.779,0.055,1.189,0.8,1.189,0.8c0.692,1.186,1.816,0.843,2.258,0.645c0.071-0.502,0.271-0.843,0.493-1.037 C4.86,11.425,3.049,10.76,3.049,7.786c0-0.847,0.302-1.54,0.799-2.082C3.768,5.507,3.501,4.718,3.924,3.65 c0,0,0.652-0.209,2.134,0.796C6.677,4.273,7.34,4.187,8,4.184c0.659,0.003,1.323,0.089,1.943,0.261 c1.482-1.004,2.132-0.796,2.132-0.796c0.423,1.068,0.157,1.857,0.077,2.054c0.497,0.542,0.798,1.235,0.798,2.082 c0,2.981-1.814,3.637-3.543,3.829c0.279,0.24,0.527,0.713,0.527,1.437c0,1.037-0.01,1.874-0.01,2.129 c0,0.208,0.14,0.449,0.534,0.373c3.081-1.028,5.302-3.935,5.302-7.362C15.76,3.906,12.285,0.431,7.999,0.431z"/></svg>
|
data/_includes/icon-twitter.html
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<a href="https://twitter.com/{{ include.username }}"><span class="icon icon--twitter">{% include icon-twitter.svg %}</span><span class="username">{{ include.username }}</span></a>
|
1
|
+
<a href="https://twitter.com/{{ include.username }}"><span class="icon icon--twitter">{% include icon-twitter.svg %}</span><span class="username">{{ include.username }}</span></a>
|
data/_includes/icon-twitter.svg
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#828282" d="M15.969,3.058c-0.586,0.26-1.217,0.436-1.878,0.515c0.675-0.405,1.194-1.045,1.438-1.809c-0.632,0.375-1.332,0.647-2.076,0.793c-0.596-0.636-1.446-1.033-2.387-1.033c-1.806,0-3.27,1.464-3.27,3.27 c0,0.256,0.029,0.506,0.085,0.745C5.163,5.404,2.753,4.102,1.14,2.124C0.859,2.607,0.698,3.168,0.698,3.767 c0,1.134,0.577,2.135,1.455,2.722C1.616,6.472,1.112,6.325,0.671,6.08c0,0.014,0,0.027,0,0.041c0,1.584,1.127,2.906,2.623,3.206 C3.02,9.402,2.731,9.442,2.433,9.442c-0.211,0-0.416-0.021-0.615-0.059c0.416,1.299,1.624,2.245,3.055,2.271 c-1.119,0.877-2.529,1.4-4.061,1.4c-0.264,0-0.524-0.015-0.78-0.046c1.447,0.928,3.166,1.469,5.013,1.469 c6.015,0,9.304-4.983,9.304-9.304c0-0.142-0.003-0.283-0.009-0.423C14.976,4.29,15.531,3.714,15.969,3.058z"/></svg>
|
1
|
+
<svg viewBox="0 0 16 16" width="16px" height="16px"><path fill="#828282" d="M15.969,3.058c-0.586,0.26-1.217,0.436-1.878,0.515c0.675-0.405,1.194-1.045,1.438-1.809c-0.632,0.375-1.332,0.647-2.076,0.793c-0.596-0.636-1.446-1.033-2.387-1.033c-1.806,0-3.27,1.464-3.27,3.27 c0,0.256,0.029,0.506,0.085,0.745C5.163,5.404,2.753,4.102,1.14,2.124C0.859,2.607,0.698,3.168,0.698,3.767 c0,1.134,0.577,2.135,1.455,2.722C1.616,6.472,1.112,6.325,0.671,6.08c0,0.014,0,0.027,0,0.041c0,1.584,1.127,2.906,2.623,3.206 C3.02,9.402,2.731,9.442,2.433,9.442c-0.211,0-0.416-0.021-0.615-0.059c0.416,1.299,1.624,2.245,3.055,2.271 c-1.119,0.877-2.529,1.4-4.061,1.4c-0.264,0-0.524-0.015-0.78-0.046c1.447,0.928,3.166,1.469,5.013,1.469 c6.015,0,9.304-4.983,9.304-9.304c0-0.142-0.003-0.283-0.009-0.423C14.976,4.29,15.531,3.714,15.969,3.058z"/></svg>
|
data/_includes/navrail.html
CHANGED
@@ -1,23 +1,23 @@
|
|
1
|
-
{%- if page_paths -%}
|
2
|
-
<nav class="navrail">
|
3
|
-
<a class="navrail-button" href="/">
|
4
|
-
<img
|
5
|
-
class="navrail-icon"
|
6
|
-
src="{{- "/assets/theme-assets/theme-icons/home2.svg" | relative_url -}}"
|
7
|
-
>
|
8
|
-
Home</a
|
9
|
-
>
|
10
|
-
{%- for path in page_paths -%}
|
11
|
-
{%- assign my_page = site.pages | where: 'path', path | first -%}
|
12
|
-
{%- if my_page.title -%}
|
13
|
-
<a class="navrail-button" href="{{ my_page.url | relative_url }}">
|
14
|
-
{%- if my_page.title -%}
|
15
|
-
<img class="navrail-icon" src="{{- my_page.icon | relative_url -}}">
|
16
|
-
{%- endif -%}
|
17
|
-
{{ my_page.title | escape }}
|
18
|
-
</a>
|
19
|
-
{%- endif -%}
|
20
|
-
{%- endfor -%}
|
21
|
-
|
22
|
-
</nav>
|
23
|
-
{%- endif -%}
|
1
|
+
{%- if page_paths -%}
|
2
|
+
<nav class="navrail">
|
3
|
+
<a class="navrail-button" href="/">
|
4
|
+
<img
|
5
|
+
class="navrail-icon"
|
6
|
+
src="{{- "/assets/theme-assets/theme-icons/home2.svg" | relative_url -}}"
|
7
|
+
>
|
8
|
+
Home</a
|
9
|
+
>
|
10
|
+
{%- for path in page_paths -%}
|
11
|
+
{%- assign my_page = site.pages | where: 'path', path | first -%}
|
12
|
+
{%- if my_page.title -%}
|
13
|
+
<a class="navrail-button" href="{{ my_page.url | relative_url }}">
|
14
|
+
{%- if my_page.title -%}
|
15
|
+
<img class="navrail-icon" src="{{- my_page.icon | relative_url -}}">
|
16
|
+
{%- endif -%}
|
17
|
+
{{ my_page.title | escape }}
|
18
|
+
</a>
|
19
|
+
{%- endif -%}
|
20
|
+
{%- endfor -%}
|
21
|
+
|
22
|
+
</nav>
|
23
|
+
{%- endif -%}
|
data/_includes/social.html
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
<ul class="social-media-list">
|
2
|
-
{%- if site.dribbble_username -%}<li><a href="https://dribbble.com/{{ site.dribbble_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#dribbble' | relative_url }}"></use></svg> <span class="username">{{ site.dribbble_username| escape }}</span></a></li>{%- endif -%}
|
3
|
-
{%- if site.facebook_username -%}<li><a href="https://www.facebook.com/{{ site.facebook_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#facebook' | relative_url }}"></use></svg> <span class="username">{{ site.facebook_username| escape }}</span></a></li>{%- endif -%}
|
4
|
-
{%- if site.flickr_username -%}<li><a href="https://www.flickr.com/photos/{{ site.flickr_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#flickr' | relative_url }}"></use></svg> <span class="username">{{ site.flickr_username| escape }}</span></a></li>{%- endif -%}
|
5
|
-
{%- if site.github_username -%}<li><a href="https://github.com/{{ site.github_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#github' | relative_url }}"></use></svg> <span class="username">{{ site.github_username| escape }}</span></a></li>{%- endif -%}
|
6
|
-
{%- if site.instagram_username -%}<li><a href="https://instagram.com/{{ site.instagram_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#instagram' | relative_url }}"></use></svg> <span class="username">{{ site.instagram_username| escape }}</span></a></li>{%- endif -%}
|
7
|
-
{%- if site.linkedin_username -%}<li><a href="https://www.linkedin.com/in/{{ site.linkedin_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#linkedin' | relative_url }}"></use></svg> <span class="username">{{ site.linkedin_username| escape }}</span></a></li>{%- endif -%}
|
8
|
-
{%- if site.pinterest_username -%}<li><a href="https://www.pinterest.com/{{ site.pinterest_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#pinterest' | relative_url }}"></use></svg> <span class="username">{{ site.pinterest_username| escape }}</span></a></li>{%- endif -%}
|
9
|
-
{%- for mst in site.mastodon -%}{%- if mst.username and mst.instance -%}<li><a href="https://{{ mst.instance| cgi_escape | escape}}/@{{mst.username}}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#mastodon' | relative_url }}"></use></svg> <span class="username">{{ mst.username|escape }}</span></a></li>{%- endif -%}{%- endfor -%}
|
10
|
-
{%- if site.twitter_username -%}<li><a href="https://www.twitter.com/{{ site.twitter_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#twitter' | relative_url }}"></use></svg> <span class="username">{{ site.twitter_username| escape }}</span></a></li>{%- endif -%}
|
11
|
-
{%- if site.youtube_username -%}<li><a href="https://youtube.com/{{ site.youtube_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#youtube' | relative_url }}"></use></svg> <span class="username">{{ site.youtube_username| escape }}</span></a></li>{%- endif -%}
|
12
|
-
{%- if site.googleplus_username -%}<li><a href="https://plus.google.com/{{ site.googleplus_username| escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#googleplus' | relative_url }}"></use></svg> <span class="username">{{ site.googleplus_username| escape }}</span></a></li>{%- endif -%}
|
13
|
-
{%- if site.rss -%}<li><a href="{{ 'feed.xml' | relative_url }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#rss' | relative_url }}"></use></svg> <span>{{ site.rss | escape }}</span></a></li>{%- endif -%}
|
14
|
-
</ul>
|
1
|
+
<ul class="social-media-list">
|
2
|
+
{%- if site.dribbble_username -%}<li><a href="https://dribbble.com/{{ site.dribbble_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#dribbble' | relative_url }}"></use></svg> <span class="username">{{ site.dribbble_username| escape }}</span></a></li>{%- endif -%}
|
3
|
+
{%- if site.facebook_username -%}<li><a href="https://www.facebook.com/{{ site.facebook_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#facebook' | relative_url }}"></use></svg> <span class="username">{{ site.facebook_username| escape }}</span></a></li>{%- endif -%}
|
4
|
+
{%- if site.flickr_username -%}<li><a href="https://www.flickr.com/photos/{{ site.flickr_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#flickr' | relative_url }}"></use></svg> <span class="username">{{ site.flickr_username| escape }}</span></a></li>{%- endif -%}
|
5
|
+
{%- if site.github_username -%}<li><a href="https://github.com/{{ site.github_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#github' | relative_url }}"></use></svg> <span class="username">{{ site.github_username| escape }}</span></a></li>{%- endif -%}
|
6
|
+
{%- if site.instagram_username -%}<li><a href="https://instagram.com/{{ site.instagram_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#instagram' | relative_url }}"></use></svg> <span class="username">{{ site.instagram_username| escape }}</span></a></li>{%- endif -%}
|
7
|
+
{%- if site.linkedin_username -%}<li><a href="https://www.linkedin.com/in/{{ site.linkedin_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#linkedin' | relative_url }}"></use></svg> <span class="username">{{ site.linkedin_username| escape }}</span></a></li>{%- endif -%}
|
8
|
+
{%- if site.pinterest_username -%}<li><a href="https://www.pinterest.com/{{ site.pinterest_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#pinterest' | relative_url }}"></use></svg> <span class="username">{{ site.pinterest_username| escape }}</span></a></li>{%- endif -%}
|
9
|
+
{%- for mst in site.mastodon -%}{%- if mst.username and mst.instance -%}<li><a href="https://{{ mst.instance| cgi_escape | escape}}/@{{mst.username}}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#mastodon' | relative_url }}"></use></svg> <span class="username">{{ mst.username|escape }}</span></a></li>{%- endif -%}{%- endfor -%}
|
10
|
+
{%- if site.twitter_username -%}<li><a href="https://www.twitter.com/{{ site.twitter_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#twitter' | relative_url }}"></use></svg> <span class="username">{{ site.twitter_username| escape }}</span></a></li>{%- endif -%}
|
11
|
+
{%- if site.youtube_username -%}<li><a href="https://youtube.com/{{ site.youtube_username| cgi_escape | escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#youtube' | relative_url }}"></use></svg> <span class="username">{{ site.youtube_username| escape }}</span></a></li>{%- endif -%}
|
12
|
+
{%- if site.googleplus_username -%}<li><a href="https://plus.google.com/{{ site.googleplus_username| escape }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#googleplus' | relative_url }}"></use></svg> <span class="username">{{ site.googleplus_username| escape }}</span></a></li>{%- endif -%}
|
13
|
+
{%- if site.rss -%}<li><a href="{{ 'feed.xml' | relative_url }}"><svg class="svg-icon"><use xlink:href="{{ '/assets/minima-social-icons.svg#rss' | relative_url }}"></use></svg> <span>{{ site.rss | escape }}</span></a></li>{%- endif -%}
|
14
|
+
</ul>
|
@@ -1,35 +1,35 @@
|
|
1
|
-
<div class="theme-selector" id="themeSelector">
|
2
|
-
<div class="theme-options" id="themeOptions">
|
3
|
-
<div
|
4
|
-
id="pink-theme"
|
5
|
-
class="theme-option pink-theme"
|
6
|
-
data-theme-class="dark-pink"
|
7
|
-
data-color="#f0b3e7"
|
8
|
-
></div>
|
9
|
-
<div
|
10
|
-
id="green-theme"
|
11
|
-
class="theme-option"
|
12
|
-
data-theme-class="dark-green"
|
13
|
-
data-color="#b1d18a"
|
14
|
-
></div>
|
15
|
-
<div
|
16
|
-
id="yellow-theme"
|
17
|
-
class="theme-option"
|
18
|
-
data-theme-class="dark-yellow"
|
19
|
-
data-color="#dbc66e"
|
20
|
-
></div>
|
21
|
-
<div
|
22
|
-
data-theme-class="dark-blue"
|
23
|
-
id="blue-theme"
|
24
|
-
class="theme-option"
|
25
|
-
data-color="#aac7ff"
|
26
|
-
></div>
|
27
|
-
<div
|
28
|
-
data-theme-class="dark-cyan"
|
29
|
-
id="cyan-theme"
|
30
|
-
class="theme-option"
|
31
|
-
data-color="#81d5cd"
|
32
|
-
></div>
|
33
|
-
</div>
|
34
|
-
<div class="current-theme" id="currentTheme"></div>
|
35
|
-
</div>
|
1
|
+
<div class="theme-selector" id="themeSelector">
|
2
|
+
<div class="theme-options" id="themeOptions">
|
3
|
+
<div
|
4
|
+
id="pink-theme"
|
5
|
+
class="theme-option pink-theme"
|
6
|
+
data-theme-class="dark-pink"
|
7
|
+
data-color="#f0b3e7"
|
8
|
+
></div>
|
9
|
+
<div
|
10
|
+
id="green-theme"
|
11
|
+
class="theme-option"
|
12
|
+
data-theme-class="dark-green"
|
13
|
+
data-color="#b1d18a"
|
14
|
+
></div>
|
15
|
+
<div
|
16
|
+
id="yellow-theme"
|
17
|
+
class="theme-option"
|
18
|
+
data-theme-class="dark-yellow"
|
19
|
+
data-color="#dbc66e"
|
20
|
+
></div>
|
21
|
+
<div
|
22
|
+
data-theme-class="dark-blue"
|
23
|
+
id="blue-theme"
|
24
|
+
class="theme-option"
|
25
|
+
data-color="#aac7ff"
|
26
|
+
></div>
|
27
|
+
<div
|
28
|
+
data-theme-class="dark-cyan"
|
29
|
+
id="cyan-theme"
|
30
|
+
class="theme-option"
|
31
|
+
data-color="#81d5cd"
|
32
|
+
></div>
|
33
|
+
</div>
|
34
|
+
<div class="current-theme" id="currentTheme"></div>
|
35
|
+
</div>
|
data/_layouts/default.html
CHANGED
@@ -1,23 +1,23 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
3
|
-
|
4
|
-
{%- include head.html -%}
|
5
|
-
|
6
|
-
<body >
|
7
|
-
|
8
|
-
{%- include header.html -%}
|
9
|
-
{%- include navrail.html -%}
|
10
|
-
|
11
|
-
|
12
|
-
<main class="page-content" aria-label="Content">
|
13
|
-
|
14
|
-
{{ content }}
|
15
|
-
|
16
|
-
|
17
|
-
</main>
|
18
|
-
|
19
|
-
{%- include footer.html -%}
|
20
|
-
|
21
|
-
</body>
|
22
|
-
|
23
|
-
</html>
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
3
|
+
|
4
|
+
{%- include head.html -%}
|
5
|
+
|
6
|
+
<body >
|
7
|
+
|
8
|
+
{%- include header.html -%}
|
9
|
+
{%- include navrail.html -%}
|
10
|
+
|
11
|
+
|
12
|
+
<main class="page-content" aria-label="Content">
|
13
|
+
|
14
|
+
{{ content }}
|
15
|
+
|
16
|
+
|
17
|
+
</main>
|
18
|
+
|
19
|
+
{%- include footer.html -%}
|
20
|
+
|
21
|
+
</body>
|
22
|
+
|
23
|
+
</html>
|
data/_layouts/home.html
CHANGED
@@ -1,80 +1,80 @@
|
|
1
|
-
---
|
2
|
-
layout: default
|
3
|
-
---
|
4
|
-
<div class="home">
|
5
|
-
{%- if page.title -%}
|
6
|
-
<h1 class="page-heading">{{ page.title }}</h1>
|
7
|
-
{%- endif -%}
|
8
|
-
|
9
|
-
{{ content }}
|
10
|
-
|
11
|
-
{%- if site.posts.size > 0 -%}
|
12
|
-
<h1 class="post-title">{{ page.list_title | default: 'Pinned Posts' }}</h1>
|
13
|
-
<ul class="pinned-post-list">
|
14
|
-
{%- for post in site.posts -%}
|
15
|
-
{%- if post.status == 'pinned' -%}
|
16
|
-
<li class="pinned-post-card custom-border">
|
17
|
-
<svg
|
18
|
-
class="pin-svg"
|
19
|
-
version="1.1"
|
20
|
-
xmlns="http://www.w3.org/2000/svg"
|
21
|
-
viewBox="0 0 54.8289715891961 122.91502231693698"
|
22
|
-
width="164.4869147675883"
|
23
|
-
height="368.74506695081095"
|
24
|
-
>
|
25
|
-
<defs>
|
26
|
-
<style class="style-fonts">
|
27
|
-
</style>
|
28
|
-
|
29
|
-
</defs>
|
30
|
-
<g stroke-linecap="round">
|
31
|
-
<g transform="translate(17.963502922513044 98.1012728373579) rotate(0 10.35400784427901 -36.6392819047461)">
|
32
|
-
<path
|
33
|
-
fill="none"
|
34
|
-
class="pin-path"
|
35
|
-
d="M-0.92 0.05 C-0.85 -7.96, -1.61 -37.45, 0.46 -48.12 C2.52 -58.8, 8.31 -63.66, 11.46 -64.01 C14.61 -64.36, 17.92 -61.96, 19.34 -50.21 C20.76 -38.46, 20.48 -4.19, 20 6.49 C19.52 17.16, 20.01 12.99, 16.44 13.85 C12.87 14.71, 2.49 13.98, -1.43 11.64 C-5.36 9.29, -6.38 13.15, -7.1 -0.21 C-7.81 -13.57, -8.39 -54.05, -5.72 -68.55 C-3.06 -83.05, 3.85 -87.21, 8.89 -87.23 C13.93 -87.26, 21.52 -74.71, 24.52 -68.68 C27.52 -62.66, 26.27 -53.89, 26.87 -51.11 M0.8 -0.97 C0.75 -9.29, -1.95 -39.43, -0.23 -49.77 C1.5 -60.1, 7.79 -63.14, 11.17 -62.99 C14.54 -62.84, 18.74 -60.01, 20.02 -48.88 C21.29 -37.74, 19.22 -6.54, 18.81 3.8 C18.39 14.14, 21.3 11.55, 17.53 13.15 C13.75 14.76, -0.1 15.77, -3.84 13.45 C-7.59 11.12, -4.38 13.08, -4.95 -0.79 C-5.52 -14.66, -9.58 -55.22, -7.24 -69.77 C-4.91 -84.32, 3.68 -88.43, 9.08 -88.08 C14.47 -87.73, 22.38 -73.79, 25.11 -67.69 C27.84 -61.59, 25.42 -54.5, 25.45 -51.48"
|
36
|
-
></path>
|
37
|
-
</g>
|
38
|
-
</g>
|
39
|
-
<mask></mask>
|
40
|
-
</svg>
|
41
|
-
{%- if post.image -%}
|
42
|
-
<img class="post-image" src="{{- post.image | relative_url -}}">
|
43
|
-
{%- endif -%}
|
44
|
-
<a class="post-link" href="{{ post.url | relative_url }}">
|
45
|
-
{%- assign date_format = site.minima.date_format | default: '%b %-d, %Y' -%}
|
46
|
-
<span class="post-meta">{{ post.date | date: date_format }}</span>
|
47
|
-
<h3 class="card-title">
|
48
|
-
{{ post.title | escape }}
|
49
|
-
</h3>
|
50
|
-
<span class="post-excerpt">{{ post.excerpt }}</span>
|
51
|
-
</a>
|
52
|
-
</li>
|
53
|
-
{%- endif -%}
|
54
|
-
{%- endfor -%}
|
55
|
-
</ul>
|
56
|
-
{%- endif -%}
|
57
|
-
<div class="all-post-wrapper">
|
58
|
-
{%- if site.posts.size > 0 -%}
|
59
|
-
<h1 class="post-title">{{ page.list_title | default: 'All Posts' }}</h1>
|
60
|
-
<ul class="post-list">
|
61
|
-
{%- for post in site.posts -%}
|
62
|
-
<li class="post-card custom-border">
|
63
|
-
{%- if post.image -%}
|
64
|
-
<img class="post-image" src="{{- post.image | relative_url -}}">
|
65
|
-
{%- endif -%}
|
66
|
-
<a class="post-link" href="{{ post.url | relative_url }}">
|
67
|
-
{%- assign date_format = site.minima.date_format | default: '%b %-d, %Y' -%}
|
68
|
-
<span class="post-meta">{{ post.date | date: date_format }}</span>
|
69
|
-
<h3 class="card-title">
|
70
|
-
{{ post.title | escape }}
|
71
|
-
</h3>
|
72
|
-
<span class="post-excerpt">{{ post.excerpt }}</span>
|
73
|
-
</a>
|
74
|
-
</li>
|
75
|
-
{%- endfor -%}
|
76
|
-
</ul>
|
77
|
-
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
|
78
|
-
{%- endif -%}
|
79
|
-
</div>
|
80
|
-
</div>
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
<div class="home">
|
5
|
+
{%- if page.title -%}
|
6
|
+
<h1 class="page-heading">{{ page.title }}</h1>
|
7
|
+
{%- endif -%}
|
8
|
+
|
9
|
+
{{ content }}
|
10
|
+
|
11
|
+
{%- if site.posts.size > 0 -%}
|
12
|
+
<h1 class="post-title">{{ page.list_title | default: 'Pinned Posts' }}</h1>
|
13
|
+
<ul class="pinned-post-list">
|
14
|
+
{%- for post in site.posts -%}
|
15
|
+
{%- if post.status == 'pinned' -%}
|
16
|
+
<li class="pinned-post-card custom-border">
|
17
|
+
<svg
|
18
|
+
class="pin-svg"
|
19
|
+
version="1.1"
|
20
|
+
xmlns="http://www.w3.org/2000/svg"
|
21
|
+
viewBox="0 0 54.8289715891961 122.91502231693698"
|
22
|
+
width="164.4869147675883"
|
23
|
+
height="368.74506695081095"
|
24
|
+
>
|
25
|
+
<defs>
|
26
|
+
<style class="style-fonts">
|
27
|
+
</style>
|
28
|
+
|
29
|
+
</defs>
|
30
|
+
<g stroke-linecap="round">
|
31
|
+
<g transform="translate(17.963502922513044 98.1012728373579) rotate(0 10.35400784427901 -36.6392819047461)">
|
32
|
+
<path
|
33
|
+
fill="none"
|
34
|
+
class="pin-path"
|
35
|
+
d="M-0.92 0.05 C-0.85 -7.96, -1.61 -37.45, 0.46 -48.12 C2.52 -58.8, 8.31 -63.66, 11.46 -64.01 C14.61 -64.36, 17.92 -61.96, 19.34 -50.21 C20.76 -38.46, 20.48 -4.19, 20 6.49 C19.52 17.16, 20.01 12.99, 16.44 13.85 C12.87 14.71, 2.49 13.98, -1.43 11.64 C-5.36 9.29, -6.38 13.15, -7.1 -0.21 C-7.81 -13.57, -8.39 -54.05, -5.72 -68.55 C-3.06 -83.05, 3.85 -87.21, 8.89 -87.23 C13.93 -87.26, 21.52 -74.71, 24.52 -68.68 C27.52 -62.66, 26.27 -53.89, 26.87 -51.11 M0.8 -0.97 C0.75 -9.29, -1.95 -39.43, -0.23 -49.77 C1.5 -60.1, 7.79 -63.14, 11.17 -62.99 C14.54 -62.84, 18.74 -60.01, 20.02 -48.88 C21.29 -37.74, 19.22 -6.54, 18.81 3.8 C18.39 14.14, 21.3 11.55, 17.53 13.15 C13.75 14.76, -0.1 15.77, -3.84 13.45 C-7.59 11.12, -4.38 13.08, -4.95 -0.79 C-5.52 -14.66, -9.58 -55.22, -7.24 -69.77 C-4.91 -84.32, 3.68 -88.43, 9.08 -88.08 C14.47 -87.73, 22.38 -73.79, 25.11 -67.69 C27.84 -61.59, 25.42 -54.5, 25.45 -51.48"
|
36
|
+
></path>
|
37
|
+
</g>
|
38
|
+
</g>
|
39
|
+
<mask></mask>
|
40
|
+
</svg>
|
41
|
+
{%- if post.image -%}
|
42
|
+
<img class="post-image" src="{{- post.image | relative_url -}}">
|
43
|
+
{%- endif -%}
|
44
|
+
<a class="post-link" href="{{ post.url | relative_url }}">
|
45
|
+
{%- assign date_format = site.minima.date_format | default: '%b %-d, %Y' -%}
|
46
|
+
<span class="post-meta">{{ post.date | date: date_format }}</span>
|
47
|
+
<h3 class="card-title">
|
48
|
+
{{ post.title | escape }}
|
49
|
+
</h3>
|
50
|
+
<span class="post-excerpt">{{ post.excerpt }}</span>
|
51
|
+
</a>
|
52
|
+
</li>
|
53
|
+
{%- endif -%}
|
54
|
+
{%- endfor -%}
|
55
|
+
</ul>
|
56
|
+
{%- endif -%}
|
57
|
+
<div class="all-post-wrapper">
|
58
|
+
{%- if site.posts.size > 0 -%}
|
59
|
+
<h1 class="post-title">{{ page.list_title | default: 'All Posts' }}</h1>
|
60
|
+
<ul class="post-list">
|
61
|
+
{%- for post in site.posts -%}
|
62
|
+
<li class="post-card custom-border">
|
63
|
+
{%- if post.image -%}
|
64
|
+
<img class="post-image" src="{{- post.image | relative_url -}}">
|
65
|
+
{%- endif -%}
|
66
|
+
<a class="post-link" href="{{ post.url | relative_url }}">
|
67
|
+
{%- assign date_format = site.minima.date_format | default: '%b %-d, %Y' -%}
|
68
|
+
<span class="post-meta">{{ post.date | date: date_format }}</span>
|
69
|
+
<h3 class="card-title">
|
70
|
+
{{ post.title | escape }}
|
71
|
+
</h3>
|
72
|
+
<span class="post-excerpt">{{ post.excerpt }}</span>
|
73
|
+
</a>
|
74
|
+
</li>
|
75
|
+
{%- endfor -%}
|
76
|
+
</ul>
|
77
|
+
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
|
78
|
+
{%- endif -%}
|
79
|
+
</div>
|
80
|
+
</div>
|
data/_layouts/page.html
CHANGED
@@ -1,14 +1,14 @@
|
|
1
|
-
---
|
2
|
-
layout: default
|
3
|
-
---
|
4
|
-
|
5
|
-
<div class="wrapper">
|
6
|
-
<article class="post">
|
7
|
-
<header class="post-header">
|
8
|
-
<h1 class="post-title">{{ page.title | escape }}</h1>
|
9
|
-
</header>
|
10
|
-
|
11
|
-
<div class="post-content">{{ content }}</div>
|
12
|
-
</article>
|
13
|
-
|
14
|
-
</div>
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<div class="wrapper">
|
6
|
+
<article class="post">
|
7
|
+
<header class="post-header">
|
8
|
+
<h1 class="post-title">{{ page.title | escape }}</h1>
|
9
|
+
</header>
|
10
|
+
|
11
|
+
<div class="post-content">{{ content }}</div>
|
12
|
+
</article>
|
13
|
+
|
14
|
+
</div>
|
data/_layouts/post.html
CHANGED
@@ -1,35 +1,35 @@
|
|
1
|
-
---
|
2
|
-
layout: default
|
3
|
-
---
|
4
|
-
<div class="wrapper">
|
5
|
-
<article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
|
6
|
-
<header class="post-header">
|
7
|
-
<h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
|
8
|
-
{%- if page.image -%}
|
9
|
-
<img src="{{- page.image | relative_url -}}" alt="" class="featured-image">
|
10
|
-
{%- endif -%}
|
11
|
-
<p class="post-meta">
|
12
|
-
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
13
|
-
{%- assign date_format = site.minima.date_format | default: '%b %-d, %Y' -%}
|
14
|
-
{{ page.date | date: date_format }}
|
15
|
-
</time>
|
16
|
-
{%- if page.author -%}
|
17
|
-
•
|
18
|
-
<span itemprop="author" itemscope itemtype="http://schema.org/Person"
|
19
|
-
><span class="p-author h-card" itemprop="name">{{ page.author }}</span></span
|
20
|
-
>
|
21
|
-
{%- endif -%}
|
22
|
-
</p>
|
23
|
-
</header>
|
24
|
-
|
25
|
-
<div class="post-content e-content" itemprop="articleBody">
|
26
|
-
{{ content }}
|
27
|
-
</div>
|
28
|
-
|
29
|
-
{%- if site.disqus.shortname -%}
|
30
|
-
{%- include disqus_comments.html -%}
|
31
|
-
{%- endif -%}
|
32
|
-
|
33
|
-
<a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
|
34
|
-
</article>
|
35
|
-
</div>
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
<div class="wrapper">
|
5
|
+
<article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting">
|
6
|
+
<header class="post-header">
|
7
|
+
<h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
|
8
|
+
{%- if page.image -%}
|
9
|
+
<img src="{{- page.image | relative_url -}}" alt="" class="featured-image">
|
10
|
+
{%- endif -%}
|
11
|
+
<p class="post-meta">
|
12
|
+
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
|
13
|
+
{%- assign date_format = site.minima.date_format | default: '%b %-d, %Y' -%}
|
14
|
+
{{ page.date | date: date_format }}
|
15
|
+
</time>
|
16
|
+
{%- if page.author -%}
|
17
|
+
•
|
18
|
+
<span itemprop="author" itemscope itemtype="http://schema.org/Person"
|
19
|
+
><span class="p-author h-card" itemprop="name">{{ page.author }}</span></span
|
20
|
+
>
|
21
|
+
{%- endif -%}
|
22
|
+
</p>
|
23
|
+
</header>
|
24
|
+
|
25
|
+
<div class="post-content e-content" itemprop="articleBody">
|
26
|
+
{{ content }}
|
27
|
+
</div>
|
28
|
+
|
29
|
+
{%- if site.disqus.shortname -%}
|
30
|
+
{%- include disqus_comments.html -%}
|
31
|
+
{%- endif -%}
|
32
|
+
|
33
|
+
<a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
|
34
|
+
</article>
|
35
|
+
</div>
|