Revert to old minimal-mistakes until I can figure out how to fix it;
This commit is contained in:
parent
41841f9115
commit
18311f2acf
304 changed files with 3394 additions and 3049 deletions
0
CNAME
Normal file → Executable file
0
CNAME
Normal file → Executable file
0
Gemfile
Normal file → Executable file
0
Gemfile
Normal file → Executable file
0
LICENSE.txt
Normal file → Executable file
0
LICENSE.txt
Normal file → Executable file
76
Rakefile
76
Rakefile
|
@ -1,76 +0,0 @@
|
||||||
require "bundler/gem_tasks"
|
|
||||||
require "jekyll"
|
|
||||||
require "listen"
|
|
||||||
|
|
||||||
def listen_ignore_paths(base, options)
|
|
||||||
[
|
|
||||||
/_config\.ya?ml/,
|
|
||||||
/_site/,
|
|
||||||
/\.jekyll-metadata/
|
|
||||||
]
|
|
||||||
end
|
|
||||||
|
|
||||||
def listen_handler(base, options)
|
|
||||||
site = Jekyll::Site.new(options)
|
|
||||||
Jekyll::Command.process_site(site)
|
|
||||||
proc do |modified, added, removed|
|
|
||||||
t = Time.now
|
|
||||||
c = modified + added + removed
|
|
||||||
n = c.length
|
|
||||||
relative_paths = c.map{ |p| Pathname.new(p).relative_path_from(base).to_s }
|
|
||||||
print Jekyll.logger.message("Regenerating:", "#{relative_paths.join(", ")} changed... ")
|
|
||||||
begin
|
|
||||||
Jekyll::Command.process_site(site)
|
|
||||||
puts "regenerated in #{Time.now - t} seconds."
|
|
||||||
rescue => e
|
|
||||||
puts "error:"
|
|
||||||
Jekyll.logger.warn "Error:", e.message
|
|
||||||
Jekyll.logger.warn "Error:", "Run jekyll build --trace for more information."
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
task :preview do
|
|
||||||
base = Pathname.new('.').expand_path
|
|
||||||
options = {
|
|
||||||
"source" => base.join('test').to_s,
|
|
||||||
"destination" => base.join('test/_site').to_s,
|
|
||||||
"force_polling" => false,
|
|
||||||
"serving" => true,
|
|
||||||
"theme" => "minimal-mistakes-jekyll"
|
|
||||||
}
|
|
||||||
|
|
||||||
options = Jekyll.configuration(options)
|
|
||||||
|
|
||||||
ENV["LISTEN_GEM_DEBUGGING"] = "1"
|
|
||||||
listener = Listen.to(
|
|
||||||
base.join("_data"),
|
|
||||||
base.join("_includes"),
|
|
||||||
base.join("_layouts"),
|
|
||||||
base.join("_sass"),
|
|
||||||
base.join("assets"),
|
|
||||||
options["source"],
|
|
||||||
:ignore => listen_ignore_paths(base, options),
|
|
||||||
:force_polling => options['force_polling'],
|
|
||||||
&(listen_handler(base, options))
|
|
||||||
)
|
|
||||||
|
|
||||||
begin
|
|
||||||
listener.start
|
|
||||||
Jekyll.logger.info "Auto-regeneration:", "enabled for '#{options["source"]}'"
|
|
||||||
|
|
||||||
unless options['serving']
|
|
||||||
trap("INT") do
|
|
||||||
listener.stop
|
|
||||||
puts " Halting auto-regeneration."
|
|
||||||
exit 0
|
|
||||||
end
|
|
||||||
|
|
||||||
loop { sleep 1000 }
|
|
||||||
end
|
|
||||||
rescue ThreadError
|
|
||||||
# You pressed Ctrl-C, oh my!
|
|
||||||
end
|
|
||||||
|
|
||||||
Jekyll::Commands::Serve.process(options)
|
|
||||||
end
|
|
4
_config.yml
Normal file → Executable file
4
_config.yml
Normal file → Executable file
|
@ -221,7 +221,6 @@ plugins:
|
||||||
- jekyll-feed
|
- jekyll-feed
|
||||||
- jemoji
|
- jemoji
|
||||||
- jekyll-redirect-from
|
- jekyll-redirect-from
|
||||||
- jekyll-include-cache
|
|
||||||
|
|
||||||
# mimic GitHub Pages with --safe
|
# mimic GitHub Pages with --safe
|
||||||
whitelist:
|
whitelist:
|
||||||
|
@ -230,8 +229,7 @@ whitelist:
|
||||||
- jekyll-gist
|
- jekyll-gist
|
||||||
- jekyll-feed
|
- jekyll-feed
|
||||||
- jemoji
|
- jemoji
|
||||||
- jekyll-redirect-from
|
|
||||||
- jekyll-include-cache
|
|
||||||
|
|
||||||
# Archives
|
# Archives
|
||||||
# Type
|
# Type
|
||||||
|
|
0
_data/navigation.yml
Normal file → Executable file
0
_data/navigation.yml
Normal file → Executable file
0
_data/navigation/en_US.yml
Normal file → Executable file
0
_data/navigation/en_US.yml
Normal file → Executable file
0
_data/navigation/es_MX.yml
Normal file → Executable file
0
_data/navigation/es_MX.yml
Normal file → Executable file
0
_data/navigation/it_IT.yml
Normal file → Executable file
0
_data/navigation/it_IT.yml
Normal file → Executable file
0
_data/navigation/pl_PL.yml
Normal file → Executable file
0
_data/navigation/pl_PL.yml
Normal file → Executable file
0
_data/navigation/pt_BR.yml
Normal file → Executable file
0
_data/navigation/pt_BR.yml
Normal file → Executable file
0
_data/ui-text.yml
Normal file → Executable file
0
_data/ui-text.yml
Normal file → Executable file
0
_includes/analytics-providers/custom.html
Normal file → Executable file
0
_includes/analytics-providers/custom.html
Normal file → Executable file
|
@ -1,9 +0,0 @@
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.analytics.google.tracking_id }}"></script>
|
|
||||||
<script>
|
|
||||||
window.dataLayer = window.dataLayer || [];
|
|
||||||
function gtag(){dataLayer.push(arguments);}
|
|
||||||
gtag('js', new Date());
|
|
||||||
|
|
||||||
gtag('config', '{{ site.analytics.google.tracking_id }}', { 'anonymize_ip': {{ site.analytics.google.anonymize_ip | default: false }}});
|
|
||||||
</script>
|
|
12
_includes/analytics-providers/google-universal.html
Normal file → Executable file
12
_includes/analytics-providers/google-universal.html
Normal file → Executable file
|
@ -1,7 +1,9 @@
|
||||||
<script>
|
<script>
|
||||||
window.ga=function(){ga.q.push(arguments)};ga.q=[];ga.l=+new Date;
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||||
ga('create','{{ site.analytics.google.tracking_id }}','auto');
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||||
ga('set', 'anonymizeIp', {{ site.analytics.google.anonymize_ip | default: false }});
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||||
ga('send','pageview')
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||||
|
|
||||||
|
ga('create', '{{ site.analytics.google.tracking_id }}', 'auto');
|
||||||
|
ga('send', 'pageview');
|
||||||
</script>
|
</script>
|
||||||
<script src="https://www.google-analytics.com/analytics.js" async></script>
|
|
||||||
|
|
7
_includes/analytics-providers/google.html
Normal file → Executable file
7
_includes/analytics-providers/google.html
Normal file → Executable file
|
@ -1,9 +1,6 @@
|
||||||
<script>
|
<script type="text/javascript">
|
||||||
var _gaq = _gaq || [];
|
var _gaq = _gaq || [];
|
||||||
_gaq.push(['_setAccount', '{{ site.analytics.google.tracking_id }}']);
|
_gaq.push(['_setAccount', '{{ site.analytics.google.tracking_id }}']);
|
||||||
{% if site.analytics.google.anonymize_ip == true %}
|
|
||||||
_gaq.push(['_gat._anonymizeIp']);
|
|
||||||
{% endif %}
|
|
||||||
_gaq.push(['_trackPageview']);
|
_gaq.push(['_trackPageview']);
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
|
@ -11,4 +8,4 @@
|
||||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
4
_includes/analytics.html
Normal file → Executable file
4
_includes/analytics.html
Normal file → Executable file
|
@ -1,12 +1,10 @@
|
||||||
{% if jekyll.environment == 'production' and site.analytics.provider and page.analytics != false %}
|
{% if site.analytics.provider and page.analytics != false %}
|
||||||
|
|
||||||
{% case site.analytics.provider %}
|
{% case site.analytics.provider %}
|
||||||
{% when "google" %}
|
{% when "google" %}
|
||||||
{% include /analytics-providers/google.html %}
|
{% include /analytics-providers/google.html %}
|
||||||
{% when "google-universal" %}
|
{% when "google-universal" %}
|
||||||
{% include /analytics-providers/google-universal.html %}
|
{% include /analytics-providers/google-universal.html %}
|
||||||
{% when "google-gtag" %}
|
|
||||||
{% include /analytics-providers/google-gtag.html %}
|
|
||||||
{% when "custom" %}
|
{% when "custom" %}
|
||||||
{% include /analytics-providers/custom.html %}
|
{% include /analytics-providers/custom.html %}
|
||||||
{% endcase %}
|
{% endcase %}
|
||||||
|
|
10
_includes/archive-single.html
Normal file → Executable file
10
_includes/archive-single.html
Normal file → Executable file
|
@ -11,27 +11,27 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div class="{{ include.type | default: "list" }}__item">
|
<div class="{{ include.type | default: "list" }}__item">
|
||||||
<article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork">
|
<article class="archive__item" itemscope itemtype="http://schema.org/CreativeWork">
|
||||||
{% if include.type == "grid" and teaser %}
|
{% if include.type == "grid" and teaser %}
|
||||||
<div class="archive__item-teaser">
|
<div class="archive__item-teaser">
|
||||||
<img src=
|
<img src=
|
||||||
{% if teaser contains "://" %}
|
{% if teaser contains "://" %}
|
||||||
"{{ teaser }}"
|
"{{ teaser }}"
|
||||||
{% else %}
|
{% else %}
|
||||||
"{{ teaser | relative_url }}"
|
"{{ teaser | absolute_url }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
alt="">
|
alt="">
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<h2 class="archive__item-title" itemprop="headline">
|
<h2 class="archive__item-title" itemprop="headline">
|
||||||
{% if post.link %}
|
{% if post.link %}
|
||||||
<a href="{{ post.link }}">{{ title }}</a> <a href="{{ post.url | relative_url }}" rel="permalink"><i class="fas fa-link" aria-hidden="true" title="permalink"></i><span class="sr-only">Permalink</span></a>
|
<a href="{{ post.link }}">{{ title }}</a> <a href="{{ post.url | absolute_url }}" rel="permalink"><i class="fa fa-link" aria-hidden="true" title="permalink"></i><span class="sr-only">Permalink</span></a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="{{ post.url | relative_url }}" rel="permalink">{{ title }}</a>
|
<a href="{{ post.url | absolute_url }}" rel="permalink">{{ title }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</h2>
|
</h2>
|
||||||
{% if post.read_time %}
|
{% if post.read_time %}
|
||||||
<p class="page__meta"><i class="far fa-clock" aria-hidden="true"></i> {% include read-time.html %}</p>
|
<p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
|
{% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
|
||||||
</article>
|
</article>
|
||||||
|
|
4
_includes/author-profile-custom-links.html
Normal file → Executable file
4
_includes/author-profile-custom-links.html
Normal file → Executable file
|
@ -1,7 +1,7 @@
|
||||||
<!--
|
<!--
|
||||||
<li>
|
<li>
|
||||||
<a href="http://link-to-whatever-social-network.com/user/" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="http://link-to-whatever-social-network.com/user/" itemprop="sameAs">
|
||||||
<i class="fas fa-fw" aria-hidden="true"></i> Custom Social Profile Link
|
<i class="fa fa-fw" aria-hidden="true"></i> Custom Social Profile Link
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
-->
|
-->
|
148
_includes/author-profile.html
Normal file → Executable file
148
_includes/author-profile.html
Normal file → Executable file
|
@ -1,37 +1,23 @@
|
||||||
{% assign author = page.author | default: page.authors[0] | default: site.author %}
|
{% if page.author and site.data.authors[page.author] %}
|
||||||
{% assign author = site.data.authors[author] | default: author %}
|
{% assign author = site.data.authors[page.author] %}
|
||||||
|
{% else %}
|
||||||
|
{% assign author = site.author %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
<div itemscope itemtype="https://schema.org/Person">
|
<div itemscope itemtype="http://schema.org/Person">
|
||||||
|
|
||||||
{% if author.avatar %}
|
{% if author.avatar %}
|
||||||
<div class="author__avatar">
|
<div class="author__avatar">
|
||||||
{% if author.avatar contains "://" %}
|
{% if author.avatar contains "://" %}
|
||||||
{% assign author_src = author.avatar %}
|
<img src="{{ author.avatar }}" alt="{{ author.name }}" itemprop="image">
|
||||||
{% else %}
|
{% else %}
|
||||||
{% assign author_src = author.avatar | relative_url %}
|
<img src="{{ author.avatar | absolute_url }}" class="author__avatar" alt="{{ author.name }}" itemprop="image">
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if author.home %}
|
|
||||||
{% if author.home contains "://" %}
|
|
||||||
{% assign author_link = author.home %}
|
|
||||||
{% else %}
|
|
||||||
{% assign author_link = author.home | relative_url %}
|
|
||||||
{% endif %}
|
|
||||||
<a href="{{ author_link }}">
|
|
||||||
<img src="{{ author_src }}" alt="{{ author.name }}" itemprop="image">
|
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
<img src="{{ author_src }}" alt="{{ author.name }}" itemprop="image">
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div class="author__content">
|
<div class="author__content">
|
||||||
{% if author.home %}
|
<h3 class="author__name" itemprop="name">{{ author.name }}</h3>
|
||||||
<a href="{{ author_link }}"><h3 class="author__name" itemprop="name">{{ author.name }}</h3></a>
|
|
||||||
{% else %}
|
|
||||||
<h3 class="author__name" itemprop="name">{{ author.name }}</h3>
|
|
||||||
{% endif %}
|
|
||||||
{% if author.bio %}
|
{% if author.bio %}
|
||||||
<p class="author__bio" itemprop="description">
|
<p class="author__bio" itemprop="description">
|
||||||
{{ author.bio }}
|
{{ author.bio }}
|
||||||
|
@ -43,23 +29,15 @@
|
||||||
<button class="btn btn--inverse">{{ site.data.ui-text[site.locale].follow_label | remove: ":" | default: "Follow" }}</button>
|
<button class="btn btn--inverse">{{ site.data.ui-text[site.locale].follow_label | remove: ":" | default: "Follow" }}</button>
|
||||||
<ul class="author__urls social-icons">
|
<ul class="author__urls social-icons">
|
||||||
{% if author.location %}
|
{% if author.location %}
|
||||||
<li itemprop="homeLocation" itemscope itemtype="https://schema.org/Place">
|
<li itemprop="homeLocation" itemscope itemtype="http://schema.org/Place">
|
||||||
<i class="fas fa-fw fa-map-marker-alt" aria-hidden="true"></i> <span itemprop="name">{{ author.location }}</span>
|
<i class="fa fa-fw fa-map-marker" aria-hidden="true"></i> <span itemprop="name">{{ author.location }}</span>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.links %}
|
|
||||||
{% for link in author.links %}
|
|
||||||
{% if link.label and link.url %}
|
|
||||||
<li><a href="{{ link.url }}" rel="nofollow noopener noreferrer"><i class="{{ link.icon | default: 'fas fa-link' }}" aria-hidden="true"></i> {{ link.label }}</a></li>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if author.uri %}
|
{% if author.uri %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ author.uri }}" itemprop="url">
|
<a href="{{ author.uri }}" itemprop="url">
|
||||||
<i class="fas fa-fw fa-link" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].website_label | default: "Website" }}
|
<i class="fa fa-fw fa-chain" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].website_label | default: "Website" }}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -68,135 +46,143 @@
|
||||||
<li>
|
<li>
|
||||||
<a href="mailto:{{ author.email }}">
|
<a href="mailto:{{ author.email }}">
|
||||||
<meta itemprop="email" content="{{ author.email }}" />
|
<meta itemprop="email" content="{{ author.email }}" />
|
||||||
<i class="fas fa-fw fa-envelope-square" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].email_label | default: "Email" }}
|
<i class="fa fa-fw fa-envelope-square" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].email_label | default: "Email" }}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.keybase %}
|
{% if author.keybase %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://keybase.io/{{ author.keybase }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://keybase.io/{{ author.keybase }}" itemprop="sameAs">
|
||||||
<i class="fas fa-fw fa-key" aria-hidden="true"></i> Keybase
|
<i class="fa fa-fw fa-key" aria-hidden="true"></i> Keybase
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.twitter %}
|
{% if author.twitter %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://twitter.com/{{ author.twitter }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://twitter.com/{{ author.twitter }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-twitter-square" aria-hidden="true"></i> Twitter
|
<i class="fa fa-fw fa-twitter-square" aria-hidden="true"></i> Twitter
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.facebook %}
|
{% if author.facebook %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://www.facebook.com/{{ author.facebook }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://www.facebook.com/{{ author.facebook }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-facebook-square" aria-hidden="true"></i> Facebook
|
<i class="fa fa-fw fa-facebook-square" aria-hidden="true"></i> Facebook
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if author.google_plus %}
|
||||||
|
<li>
|
||||||
|
<a href="https://plus.google.com/+{{ author.google_plus }}" itemprop="sameAs">
|
||||||
|
<i class="fa fa-fw fa-google-plus-square" aria-hidden="true"></i> Google+
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.linkedin %}
|
{% if author.linkedin %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://www.linkedin.com/in/{{ author.linkedin }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://www.linkedin.com/in/{{ author.linkedin }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-linkedin" aria-hidden="true"></i> LinkedIn
|
<i class="fa fa-fw fa-linkedin-square" aria-hidden="true"></i> LinkedIn
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.xing %}
|
{% if author.xing %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://www.xing.com/profile/{{ author.xing }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://www.xing.com/profile/{{ author.xing }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-xing-square" aria-hidden="true"></i> XING
|
<i class="fa fa-fw fa-xing-square" aria-hidden="true"></i> XING
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.instagram %}
|
{% if author.instagram %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://instagram.com/{{ author.instagram }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://instagram.com/{{ author.instagram }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-instagram" aria-hidden="true"></i> Instagram
|
<i class="fa fa-fw fa-instagram" aria-hidden="true"></i> Instagram
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.tumblr %}
|
{% if author.tumblr %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://{{ author.tumblr }}.tumblr.com" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://{{ author.tumblr }}.tumblr.com" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-tumblr-square" aria-hidden="true"></i> Tumblr
|
<i class="fa fa-fw fa-tumblr-square" aria-hidden="true"></i> Tumblr
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.bitbucket %}
|
{% if author.bitbucket %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://bitbucket.org/{{ author.bitbucket }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://bitbucket.org/{{ author.bitbucket }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-bitbucket" aria-hidden="true"></i> Bitbucket
|
<i class="fa fa-fw fa-bitbucket" aria-hidden="true"></i> Bitbucket
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.github %}
|
{% if author.github %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://github.com/{{ author.github }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://github.com/{{ author.github }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-github" aria-hidden="true"></i> GitHub
|
<i class="fa fa-fw fa-github" aria-hidden="true"></i> GitHub
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.gitlab %}
|
{% if author.gitlab %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://gitlab.com/{{ author.gitlab }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://gitlab.com/{{ author.gitlab }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-gitlab" aria-hidden="true"></i> GitLab
|
<i class="fa fa-fw fa-gitlab" aria-hidden="true"></i> Gitlab
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.stackoverflow %}
|
{% if author.stackoverflow %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://stackoverflow.com/users/{{ author.stackoverflow }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://www.stackoverflow.com/users/{{ author.stackoverflow }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-stack-overflow" aria-hidden="true"></i> Stack Overflow
|
<i class="fa fa-fw fa-stack-overflow" aria-hidden="true"></i> Stackoverflow
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.lastfm %}
|
{% if author.lastfm %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://last.fm/user/{{ author.lastfm }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://last.fm/user/{{ author.lastfm }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-lastfm-square" aria-hidden="true"></i> Last.fm
|
<i class="fa fa-fw fa-lastfm-square" aria-hidden="true"></i> Last.fm
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.dribbble %}
|
{% if author.dribbble %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://dribbble.com/{{ author.dribbble }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://dribbble.com/{{ author.dribbble }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-dribbble" aria-hidden="true"></i> Dribbble
|
<i class="fa fa-fw fa-dribbble" aria-hidden="true"></i> Dribbble
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.pinterest %}
|
{% if author.pinterest %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://www.pinterest.com/{{ author.pinterest }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://www.pinterest.com/{{ author.pinterest }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-pinterest" aria-hidden="true"></i> Pinterest
|
<i class="fa fa-fw fa-pinterest" aria-hidden="true"></i> Pinterest
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.foursquare %}
|
{% if author.foursquare %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://foursquare.com/{{ author.foursquare }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://foursquare.com/{{ author.foursquare }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-foursquare" aria-hidden="true"></i> Foursquare
|
<i class="fa fa-fw fa-foursquare" aria-hidden="true"></i> Foursquare
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.steam %}
|
{% if author.steam %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://steamcommunity.com/id/{{ author.steam }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://steamcommunity.com/id/{{ author.steam }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-steam" aria-hidden="true"></i> Steam
|
<i class="fa fa-fw fa-steam-square" aria-hidden="true"></i> Steam
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -204,14 +190,14 @@
|
||||||
{% if author.youtube %}
|
{% if author.youtube %}
|
||||||
{% if author.youtube contains "://" %}
|
{% if author.youtube contains "://" %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ author.youtube }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="{{ author.youtube }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-youtube" aria-hidden="true"></i> YouTube
|
<i class="fa fa-fw fa-youtube-square" aria-hidden="true"></i> YouTube
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% else author.youtube %}
|
{% else author.youtube %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://www.youtube.com/user/{{ author.youtube }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://www.youtube.com/user/{{ author.youtube }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-youtube" aria-hidden="true"></i> YouTube
|
<i class="fa fa-fw fa-youtube-square" aria-hidden="true"></i> YouTube
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -219,40 +205,40 @@
|
||||||
|
|
||||||
{% if author.soundcloud %}
|
{% if author.soundcloud %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://soundcloud.com/{{ author.soundcloud }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://soundcloud.com/{{ author.soundcloud }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-soundcloud" aria-hidden="true"></i> SoundCloud
|
<i class="fa fa-fw fa-soundcloud" aria-hidden="true"></i> Soundcloud
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.weibo %}
|
{% if author.weibo %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://www.weibo.com/{{ author.weibo }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://www.weibo.com/{{ author.weibo }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-weibo" aria-hidden="true"></i> Weibo
|
<i class="fa fa-fw fa-weibo" aria-hidden="true"></i> Weibo
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.flickr %}
|
{% if author.flickr %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://www.flickr.com/{{ author.flickr }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://www.flickr.com/{{ author.flickr }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-flickr" aria-hidden="true"></i> Flickr
|
<i class="fa fa-fw fa-flickr" aria-hidden="true"></i> Flickr
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.codepen %}
|
{% if author.codepen %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://codepen.io/{{ author.codepen }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://codepen.io/{{ author.codepen }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-codepen" aria-hidden="true"></i> CodePen
|
<i class="fa fa-fw fa-codepen" aria-hidden="true"></i> CodePen
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author.vine %}
|
{% if author.vine %}
|
||||||
<li>
|
<li>
|
||||||
<a href="https://vine.co/u/{{ author.vine }}" itemprop="sameAs" rel="nofollow noopener noreferrer">
|
<a href="https://vine.co/u/{{ author.vine }}" itemprop="sameAs">
|
||||||
<i class="fab fa-fw fa-vine" aria-hidden="true"></i> Vine
|
<i class="fa fa-fw fa-vine" aria-hidden="true"></i> Vine
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
5
_includes/base_path
Executable file
5
_includes/base_path
Executable file
|
@ -0,0 +1,5 @@
|
||||||
|
{% if site.url %}
|
||||||
|
{% assign base_path = site.url | append: site.baseurl %}
|
||||||
|
{% else %}
|
||||||
|
{% assign base_path = site.github.url %}
|
||||||
|
{% endif %}
|
8
_includes/breadcrumbs.html
Normal file → Executable file
8
_includes/breadcrumbs.html
Normal file → Executable file
|
@ -13,12 +13,12 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<nav class="breadcrumbs">
|
<nav class="breadcrumbs">
|
||||||
<ol itemscope itemtype="https://schema.org/BreadcrumbList">
|
<ol itemscope itemtype="http://schema.org/BreadcrumbList">
|
||||||
{% assign crumbs = page.url | split: '/' %}
|
{% assign crumbs = page.url | split: '/' %}
|
||||||
{% assign i = 1 %}
|
{% assign i = 1 %}
|
||||||
{% for crumb in crumbs offset: 1 %}
|
{% for crumb in crumbs offset: 1 %}
|
||||||
{% if forloop.first %}
|
{% if forloop.first %}
|
||||||
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
|
||||||
<a href="{{ site.url }}{{ site.baseurl }}/" itemprop="item"><span itemprop="name">{{ site.data.ui-text[site.locale].breadcrumb_home_label | default: "Home" }}</span></a>
|
<a href="{{ site.url }}{{ site.baseurl }}/" itemprop="item"><span itemprop="name">{{ site.data.ui-text[site.locale].breadcrumb_home_label | default: "Home" }}</span></a>
|
||||||
<meta itemprop="position" content="{{ i }}" />
|
<meta itemprop="position" content="{{ i }}" />
|
||||||
</li>
|
</li>
|
||||||
|
@ -28,8 +28,8 @@
|
||||||
<li class="current">{{ page.title }}</li>
|
<li class="current">{{ page.title }}</li>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% assign i = i | plus: 1 %}
|
{% assign i = i | plus: 1 %}
|
||||||
<li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
|
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
|
||||||
<a href="{{ crumb | downcase | replace: '%20', '-' | prepend: path_type | prepend: crumb_path | relative_url }}" itemprop="item"><span itemprop="name">{{ crumb | replace: '-', ' ' | replace: '%20', ' ' | capitalize }}</span></a>
|
<a href="{{ crumb | downcase | replace: '%20', '-' | prepend: path_type | prepend: crumb_path | absolute_url }}" itemprop="item"><span itemprop="name">{{ crumb | replace: '-', ' ' | replace: '%20', ' ' | capitalize }}</span></a>
|
||||||
<meta itemprop="position" content="{{ i }}" />
|
<meta itemprop="position" content="{{ i }}" />
|
||||||
</li>
|
</li>
|
||||||
<span class="sep">{{ site.data.ui-text[site.locale].breadcrumb_separator | default: "/" }}</span>
|
<span class="sep">{{ site.data.ui-text[site.locale].breadcrumb_separator | default: "/" }}</span>
|
||||||
|
|
4
_includes/browser-upgrade.html
Normal file → Executable file
4
_includes/browser-upgrade.html
Normal file → Executable file
|
@ -1,3 +1,3 @@
|
||||||
<!--[if lt IE 9]>
|
<!--[if lt IE 9]>
|
||||||
<div class="notice--danger align-center" style="margin: 0;">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience.</div>
|
<div class="notice--danger align-center" style="margin: 0;">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</div>
|
||||||
<![endif]-->
|
<![endif]-->
|
10
_includes/category-list.html
Normal file → Executable file
10
_includes/category-list.html
Normal file → Executable file
|
@ -10,17 +10,17 @@
|
||||||
<!-- Sort alphabetically regardless of case e.g. a B c d E -->
|
<!-- Sort alphabetically regardless of case e.g. a B c d E -->
|
||||||
<!-- modified from http://www.codeofclimber.ru/2015/sorting-site-tags-in-jekyll/ -->
|
<!-- modified from http://www.codeofclimber.ru/2015/sorting-site-tags-in-jekyll/ -->
|
||||||
{% endcomment %}
|
{% endcomment %}
|
||||||
{% capture page_categories %}{% for category in page.categories %}{{ category | downcase }}|{{ category }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
|
{% capture page_categories %}{% for category in page.categories %}{{ category | downcase }}#{{ category }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
|
||||||
{% assign category_hashes = page_categories | split: ',' | sort %}
|
{% assign category_hashes = page_categories | split: ',' | sort %}
|
||||||
|
|
||||||
<p class="page__taxonomy">
|
<p class="page__taxonomy">
|
||||||
<strong><i class="fas fa-fw fa-folder-open" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].categories_label | default: "Categories:" }} </strong>
|
<strong><i class="fa fa-fw fa-folder-open" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].categories_label | default: "Categories:" }} </strong>
|
||||||
<span itemprop="keywords">
|
<span itemprop="keywords">
|
||||||
{% for hash in category_hashes %}
|
{% for hash in category_hashes %}
|
||||||
{% assign keyValue = hash | split: '|' %}
|
{% assign keyValue = hash | split: '#' %}
|
||||||
{% capture category_word %}{{ keyValue[1] | strip_newlines }}{% endcapture %}
|
{% capture category_word %}{{ keyValue[1] | strip_newlines }}{% endcapture %}
|
||||||
<a href="{{ category_word | slugify | prepend: path_type | prepend: site.category_archive.path | relative_url }}" class="page__taxonomy-item" rel="tag">{{ category_word }}</a>{% unless forloop.last %}<span class="sep">, </span>{% endunless %}
|
<a href="{{ category_word | slugify | prepend: path_type | prepend: site.category_archive.path | absolute_url }}" class="page__taxonomy-item" rel="tag">{{ category_word }}</a>{% unless forloop.last %}<span class="sep">, </span>{% endunless %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
4
_includes/comment.html
Normal file → Executable file
4
_includes/comment.html
Normal file → Executable file
|
@ -1,9 +1,9 @@
|
||||||
<article id="comment{{ include.index }}" class="js-comment comment" itemprop="comment" itemscope itemtype="https://schema.org/Comment">
|
<article id="comment{{ include.index }}" class="js-comment comment" itemprop="comment" itemscope itemtype="http://schema.org/Comment">
|
||||||
<div class="comment__avatar-wrapper">
|
<div class="comment__avatar-wrapper">
|
||||||
<img class="comment__avatar" src="https://www.gravatar.com/avatar/{{ include.email }}?d=mm&s=80" alt="{{ include.name }}">
|
<img class="comment__avatar" src="https://www.gravatar.com/avatar/{{ include.email }}?d=mm&s=80" alt="{{ include.name }}">
|
||||||
</div>
|
</div>
|
||||||
<div class="comment__content-wrapper">
|
<div class="comment__content-wrapper">
|
||||||
<h3 class="comment__author" itemprop="author" itemscope itemtype="https://schema.org/Person">
|
<h3 class="comment__author" itemprop="author" itemscope itemtype="http://schema.org/Person">
|
||||||
{% unless include.url == blank %}
|
{% unless include.url == blank %}
|
||||||
<span itemprop="name"><a rel="external nofollow" itemprop="url" href="{{ include.url }}">{{ include.name }}</a></span>
|
<span itemprop="name"><a rel="external nofollow" itemprop="url" href="{{ include.url }}">{{ include.name }}</a></span>
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|
0
_includes/comments-providers/custom.html
Normal file → Executable file
0
_includes/comments-providers/custom.html
Normal file → Executable file
0
_includes/comments-providers/discourse.html
Normal file → Executable file
0
_includes/comments-providers/discourse.html
Normal file → Executable file
0
_includes/comments-providers/disqus.html
Normal file → Executable file
0
_includes/comments-providers/disqus.html
Normal file → Executable file
0
_includes/comments-providers/facebook.html
Normal file → Executable file
0
_includes/comments-providers/facebook.html
Normal file → Executable file
2
_includes/comments-providers/google-plus.html
Executable file
2
_includes/comments-providers/google-plus.html
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
<script async type="text/javascript" src="//apis.google.com/js/plusone.js?callback=gpcb"></script>
|
||||||
|
<noscript>Please enable JavaScript to view the <a href="https://plus.google.com/">comments powered by Google+.</a></noscript>
|
32
_includes/comments-providers/scripts.html
Normal file → Executable file
32
_includes/comments-providers/scripts.html
Normal file → Executable file
|
@ -1,18 +1,16 @@
|
||||||
{% if site.comments.provider and page.comments %}
|
{% if site.comments.provider and page.comments %}
|
||||||
{% case site.comments.provider %}
|
{% case site.comments.provider %}
|
||||||
{% when "disqus" %}
|
{% when "disqus" %}
|
||||||
{% include /comments-providers/disqus.html %}
|
{% include /comments-providers/disqus.html %}
|
||||||
{% when "discourse" %}
|
{% when "discourse" %}
|
||||||
{% include /comments-providers/discourse.html %}
|
{% include /comments-providers/discourse.html %}
|
||||||
{% when "facebook" %}
|
{% when "facebook" %}
|
||||||
{% include /comments-providers/facebook.html %}
|
{% include /comments-providers/facebook.html %}
|
||||||
{% when "staticman" %}
|
{% when "google-plus" %}
|
||||||
{% include /comments-providers/staticman.html %}
|
{% include /comments-providers/google-plus.html %}
|
||||||
{% when "staticman_v2" %}
|
{% when "staticman" %}
|
||||||
{% include /comments-providers/staticman_v2.html %}
|
{% include /comments-providers/staticman.html %}
|
||||||
{% when "utterances" %}
|
{% when "custom" %}
|
||||||
{% include /comments-providers/utterances.html %}
|
{% include /comments-providers/custom.html %}
|
||||||
{% when "custom" %}
|
{% endcase %}
|
||||||
{% include /comments-providers/custom.html %}
|
{% endif %}
|
||||||
{% endcase %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
6
_includes/comments-providers/staticman.html
Normal file → Executable file
6
_includes/comments-providers/staticman.html
Normal file → Executable file
|
@ -1,11 +1,13 @@
|
||||||
{% if site.repository and site.staticman.branch %}
|
{% if site.repository and site.staticman.branch %}
|
||||||
<script>
|
<script>
|
||||||
(function ($) {
|
(function ($) {
|
||||||
|
var $comments = $('.js-comments');
|
||||||
|
|
||||||
$('#new_comment').submit(function () {
|
$('#new_comment').submit(function () {
|
||||||
var form = this;
|
var form = this;
|
||||||
|
|
||||||
$(form).addClass('disabled');
|
$(form).addClass('disabled');
|
||||||
$('#comment-form-submit').html('<i class="fas fa-spinner fa-spin fa-fw"></i> {{ site.data.ui-text[site.locale].loading_label | default: "Loading..." }}');
|
$('#comment-form-submit').html('<i class="fa fa-spinner fa-spin fa-fw"></i> {{ site.data.ui-text[site.locale].loading_label | default: "Loading..." }}');
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: $(this).attr('method'),
|
type: $(this).attr('method'),
|
||||||
|
@ -37,4 +39,4 @@
|
||||||
}
|
}
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
</script>
|
</script>
|
||||||
{% endif %}
|
{% endif %}
|
|
@ -1,40 +0,0 @@
|
||||||
{% if site.repository and site.staticman.branch %}
|
|
||||||
<script>
|
|
||||||
(function ($) {
|
|
||||||
$('#new_comment').submit(function () {
|
|
||||||
var form = this;
|
|
||||||
|
|
||||||
$(form).addClass('disabled');
|
|
||||||
$('#comment-form-submit').html('<i class="fas fa-spinner fa-spin fa-fw"></i> {{ site.data.ui-text[site.locale].loading_label | default: "Loading..." }}');
|
|
||||||
|
|
||||||
$.ajax({
|
|
||||||
type: $(this).attr('method'),
|
|
||||||
url: $(this).attr('action'),
|
|
||||||
data: $(this).serialize(),
|
|
||||||
contentType: 'application/x-www-form-urlencoded',
|
|
||||||
success: function (data) {
|
|
||||||
$('#comment-form-submit').html('{{ site.data.ui-text[site.locale].comment_btn_submitted | default: "Submitted" }}');
|
|
||||||
$('.page__comments-form .js-notice').removeClass('notice--danger');
|
|
||||||
$('.page__comments-form .js-notice').addClass('notice--success');
|
|
||||||
showAlert('{{ site.data.ui-text[site.locale].comment_success_msg | default: "Thanks for your comment! It will show on the site once it has been approved." }}');
|
|
||||||
},
|
|
||||||
error: function (err) {
|
|
||||||
console.log(err);
|
|
||||||
$('#comment-form-submit').html('{{ site.data.ui-text[site.locale].comment_btn_submit | default: "Submit Comment" }}');
|
|
||||||
$('.page__comments-form .js-notice').removeClass('notice--success');
|
|
||||||
$('.page__comments-form .js-notice').addClass('notice--danger');
|
|
||||||
showAlert('{{ site.data.ui-text[site.locale].comment_error_msg | default: "Sorry, there was an error with your submission. Please make sure all required fields have been completed and try again." }}');
|
|
||||||
$(form).removeClass('disabled');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return false;
|
|
||||||
});
|
|
||||||
|
|
||||||
function showAlert(message) {
|
|
||||||
$('.page__comments-form .js-notice').removeClass('hidden');
|
|
||||||
$('.page__comments-form .js-notice-text').html(message);
|
|
||||||
}
|
|
||||||
})(jQuery);
|
|
||||||
</script>
|
|
||||||
{% endif %}
|
|
|
@ -1,20 +0,0 @@
|
||||||
<script>
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
(function() {
|
|
||||||
var commentContainer = document.querySelector('#utterances-comments');
|
|
||||||
|
|
||||||
if (!commentContainer) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var script = document.createElement('script');
|
|
||||||
script.setAttribute('src', 'https://utteranc.es/client.js');
|
|
||||||
script.setAttribute('repo', '{{ site.repository }}');
|
|
||||||
script.setAttribute('issue-term', '{{ site.comments.utterances.issue_term | default: "pathname" }}');
|
|
||||||
script.setAttribute('theme', '{{ site.comments.utterances.theme | default: "github-light" }}');
|
|
||||||
script.setAttribute('crossorigin', 'anonymous');
|
|
||||||
|
|
||||||
commentContainer.appendChild(script);
|
|
||||||
})();
|
|
||||||
</script>
|
|
240
_includes/comments.html
Normal file → Executable file
240
_includes/comments.html
Normal file → Executable file
|
@ -1,159 +1,97 @@
|
||||||
<div class="page__comments">
|
<div class="page__comments">
|
||||||
{% capture comments_label %}{{ site.data.ui-text[site.locale].comments_label | default: "Comments" }}{% endcapture %}
|
{% capture comments_label %}{{ site.data.ui-text[site.locale].comments_label | default: "Comments" }}{% endcapture %}
|
||||||
{% case site.comments.provider %}
|
{% case site.comments.provider %}
|
||||||
{% when "discourse" %}
|
{% when "discourse" %}
|
||||||
<h4 class="page__comments-title">{{ comments_label }}</h4>
|
<h4 class="page__comments-title">{{ comments_label }}</h4>
|
||||||
<section id="discourse-comments"></section>
|
<section id="discourse-comments"></section>
|
||||||
{% when "disqus" %}
|
{% when "disqus" %}
|
||||||
<h4 class="page__comments-title">{{ comments_label }}</h4>
|
<h4 class="page__comments-title">{{ comments_label }}</h4>
|
||||||
<section id="disqus_thread"></section>
|
<section id="disqus_thread"></section>
|
||||||
{% when "facebook" %}
|
{% when "facebook" %}
|
||||||
<h4 class="page__comments-title">{{ comments_label }}</h4>
|
<h4 class="page__comments-title">{{ comments_label }}</h4>
|
||||||
<section class="fb-comments" data-href="{{ page.url | absolute_url }}" data-mobile="true" data-num-posts="{{ site.comments.facebook.num_posts | default: 5 }}" data-width="100%" data-colorscheme="{{ site.comments.facebook.colorscheme | default: 'light' }}"></section>
|
<section class="fb-comments" data-href="{{ page.url | absolute_url }}" data-mobile="true" data-num-posts="{{ site.comments.facebook.num_posts | default: 5 }}" data-width="100%" data-colorscheme="{{ site.comments.facebook.colorscheme | default: 'light' }}"></section>
|
||||||
{% when "staticman_v2" %}
|
{% when "google-plus" %}
|
||||||
<section id="static-comments">
|
<h4 class="page__comments-title">{{ comments_label }}</h4>
|
||||||
{% if site.repository and site.staticman.branch %}
|
<section id="g-comments" class="g-comments">Loading Google+ Comments ...</section>
|
||||||
<!-- Start static comments -->
|
<script>
|
||||||
<div class="js-comments">
|
function initComment() {
|
||||||
{% if site.data.comments[page.slug] %}
|
gapi.comments.render("g-comments", {
|
||||||
<h4 class="page__comments-title">{{ site.data.ui-text[site.locale].comments_title | default: "Comments" }}</h4>
|
href: "{{ page.url | absolute_url }}",
|
||||||
{% assign comments = site.data.comments[page.slug] | sort %}
|
width: "624",
|
||||||
|
first_party_property: "BLOGGER",
|
||||||
|
view_type: "FILTERED_POSTMOD"
|
||||||
|
})
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script async type="text/javascript" src="https://apis.google.com/js/plusone.js" onload="initComment()" />
|
||||||
|
<noscript>Please enable JavaScript to view the <a href="https://plus.google.com/">comments powered by Google+.</a></noscript>-->
|
||||||
|
{% when "staticman" %}
|
||||||
|
<section id="static-comments">
|
||||||
|
{% if site.repository and site.staticman.branch %}
|
||||||
|
<!-- Start static comments -->
|
||||||
|
<div class="js-comments">
|
||||||
|
{% if site.data.comments[page.slug] %}
|
||||||
|
<h4 class="page__comments-title">{{ site.data.ui-text[site.locale].comments_title | default: "Comments" }}</h4>
|
||||||
|
{% assign comments = site.data.comments[page.slug] | sort %}
|
||||||
|
|
||||||
{% for comment in comments %}
|
{% for comment in comments %}
|
||||||
{% assign email = comment[1].email %}
|
{% assign email = comment[1].email %}
|
||||||
{% assign name = comment[1].name %}
|
{% assign name = comment[1].name %}
|
||||||
{% assign url = comment[1].url %}
|
{% assign url = comment[1].url %}
|
||||||
{% assign date = comment[1].date %}
|
{% assign date = comment[1].date %}
|
||||||
{% assign message = comment[1].message %}
|
{% assign message = comment[1].message %}
|
||||||
{% include comment.html index=forloop.index email=email name=name url=url date=date message=message %}
|
{% include comment.html index=forloop.index email=email name=name url=url date=date message=message %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
<!-- End static comments -->
|
|
||||||
|
|
||||||
<!-- Start new comment form -->
|
|
||||||
<div class="page__comments-form">
|
|
||||||
<h4 class="page__comments-title">{{ site.data.ui-text[site.locale].comments_label | default: "Leave a Comment" }}</h4>
|
|
||||||
<p class="small">{{ site.data.ui-text[site.locale].comment_form_info | default: "Your email address will not be published. Required fields are marked" }} <span class="required">*</span></p>
|
|
||||||
<form id="new_comment" class="page__comments-form js-form form" method="post" action="{{ site.staticman.endpoint | default: 'https://api.staticman.net/v2/entry/' }}{{ site.repository }}/{{ site.staticman.branch }}/comments">
|
|
||||||
<div class="form__spinner">
|
|
||||||
<i class="fas fa-spinner fa-spin fa-3x fa-fw"></i>
|
|
||||||
<span class="sr-only">{{ site.data.ui-text[site.locale].loading_label | default: "Loading..." }}</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="comment-form-message">{{ site.data.ui-text[site.locale].comment_form_comment_label | default: "Comment" }} <small class="required">*</small></label>
|
|
||||||
<textarea type="text" rows="3" id="comment-form-message" name="fields[message]" tabindex="1"></textarea>
|
|
||||||
<div class="small help-block"><a href="https://daringfireball.net/projects/markdown/">{{ site.data.ui-text[site.locale].comment_form_md_info | default: "Markdown is supported." }}</a></div>
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="comment-form-name">{{ site.data.ui-text[site.locale].comment_form_name_label | default: "Name" }} <small class="required">*</small></label>
|
|
||||||
<input type="text" id="comment-form-name" name="fields[name]" tabindex="2" />
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="comment-form-email">{{ site.data.ui-text[site.locale].comment_form_email_label | default: "Email address" }} <small class="required">*</small></label>
|
|
||||||
<input type="email" id="comment-form-email" name="fields[email]" tabindex="3" />
|
|
||||||
</div>
|
|
||||||
<div class="form-group">
|
|
||||||
<label for="comment-form-url">{{ site.data.ui-text[site.locale].comment_form_website_label | default: "Website (optional)" }}</label>
|
|
||||||
<input type="url" id="comment-form-url" name="fields[url]" tabindex="4"/>
|
|
||||||
</div>
|
|
||||||
<div class="form-group hidden" style="display: none;">
|
|
||||||
<input type="hidden" name="options[slug]" value="{{ page.slug }}">
|
|
||||||
<label for="comment-form-location">Not used. Leave blank if you are a human.</label>
|
|
||||||
<input type="text" id="comment-form-location" name="fields[hidden]" autocomplete="off"/>
|
|
||||||
{% if site.reCaptcha.siteKey %}<input type="hidden" name="options[reCaptcha][siteKey]" value="{{ site.reCaptcha.siteKey }}">{% endif %}
|
|
||||||
{% if site.reCaptcha.secret %}<input type="hidden" name="options[reCaptcha][secret]" value="{{ site.reCaptcha.secret }}">{% endif %}
|
|
||||||
</div>
|
|
||||||
<!-- Start comment form alert messaging -->
|
|
||||||
<p class="hidden js-notice">
|
|
||||||
<strong class="js-notice-text"></strong>
|
|
||||||
</p>
|
|
||||||
<!-- End comment form alert messaging -->
|
|
||||||
{% if site.reCaptcha.siteKey %}
|
|
||||||
<div class="form-group">
|
|
||||||
<div class="g-recaptcha" data-sitekey="{{ site.reCaptcha.siteKey }}"></div>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="form-group">
|
</div>
|
||||||
<button type="submit" id="comment-form-submit" tabindex="5" class="btn btn--primary btn--large">{{ site.data.ui-text[site.locale].comment_btn_submit | default: "Submit Comment" }}</button>
|
<!-- End static comments -->
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
<!-- End new comment form -->
|
|
||||||
{% if site.reCaptcha.siteKey %}<script async src="https://www.google.com/recaptcha/api.js"></script>{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
</section>
|
|
||||||
{% when "staticman" %}
|
|
||||||
<section id="static-comments">
|
|
||||||
{% if site.repository and site.staticman.branch %}
|
|
||||||
<!-- Start static comments -->
|
|
||||||
<div class="js-comments">
|
|
||||||
{% if site.data.comments[page.slug] %}
|
|
||||||
<h4 class="page__comments-title">{{ site.data.ui-text[site.locale].comments_title | default: "Comments" }}</h4>
|
|
||||||
{% assign comments = site.data.comments[page.slug] | sort %}
|
|
||||||
|
|
||||||
{% for comment in comments %}
|
<!-- Start new comment form -->
|
||||||
{% assign email = comment[1].email %}
|
<div class="page__comments-form">
|
||||||
{% assign name = comment[1].name %}
|
<h4 class="page__comments-title">{{ site.data.ui-text[site.locale].comments_label | default: "Leave a Comment" }}</h4>
|
||||||
{% assign url = comment[1].url %}
|
<p class="small">{{ site.data.ui-text[site.locale].comment_form_info | default: "Your email address will not be published. Required fields are marked" }} <span class="required">*</span></p>
|
||||||
{% assign date = comment[1].date %}
|
<form id="new_comment" class="page__comments-form js-form form" method="post" action="https://api.staticman.net/v1/entry/{{ site.repository }}/{{ site.staticman.branch }}">
|
||||||
{% assign message = comment[1].message %}
|
<div class="form__spinner">
|
||||||
{% include comment.html index=forloop.index email=email name=name url=url date=date message=message %}
|
<i class="fa fa-spinner fa-spin fa-3x fa-fw"></i>
|
||||||
{% endfor %}
|
<span class="sr-only">{{ site.data.ui-text[site.locale].loading_label | default: "Loading..." }}</span>
|
||||||
{% endif %}
|
</div>
|
||||||
</div>
|
|
||||||
<!-- End static comments -->
|
|
||||||
|
|
||||||
<!-- Start new comment form -->
|
<fieldset>
|
||||||
<div class="page__comments-form">
|
<label for="comment-form-message">{{ site.data.ui-text[site.locale].comment_form_comment_label | default: "Comment" }} <small class="required">*</small></label>
|
||||||
<h4 class="page__comments-title">{{ site.data.ui-text[site.locale].comments_label | default: "Leave a Comment" }}</h4>
|
<textarea type="text" rows="3" id="comment-form-message" name="fields[message]" tabindex="1"></textarea>
|
||||||
<p class="small">{{ site.data.ui-text[site.locale].comment_form_info | default: "Your email address will not be published. Required fields are marked" }} <span class="required">*</span></p>
|
<div class="small help-block"><a href="https://daringfireball.net/projects/markdown/">{{ site.data.ui-text[site.locale].comment_form_md_info | default: "Markdown is supported." }}</a></div>
|
||||||
<form id="new_comment" class="page__comments-form js-form form" method="post" action="https://api.staticman.net/v1/entry/{{ site.repository }}/{{ site.staticman.branch }}">
|
</fieldset>
|
||||||
<div class="form__spinner">
|
<fieldset>
|
||||||
<i class="fas fa-spinner fa-spin fa-3x fa-fw"></i>
|
<label for="comment-form-name">{{ site.data.ui-text[site.locale].comment_form_name_label | default: "Name" }} <small class="required">*</small></label>
|
||||||
<span class="sr-only">{{ site.data.ui-text[site.locale].loading_label | default: "Loading..." }}</span>
|
<input type="text" id="comment-form-name" name="fields[name]" tabindex="2" />
|
||||||
</div>
|
</fieldset>
|
||||||
|
<fieldset>
|
||||||
<div class="form-group">
|
<label for="comment-form-email">{{ site.data.ui-text[site.locale].comment_form_email_label | default: "Email address" }} <small class="required">*</small></label>
|
||||||
<label for="comment-form-message">{{ site.data.ui-text[site.locale].comment_form_comment_label | default: "Comment" }} <small class="required">*</small></label>
|
<input type="email" id="comment-form-email" name="fields[email]" tabindex="3" />
|
||||||
<textarea type="text" rows="3" id="comment-form-message" name="fields[message]" tabindex="1"></textarea>
|
</fieldset>
|
||||||
<div class="small help-block"><a href="https://daringfireball.net/projects/markdown/">{{ site.data.ui-text[site.locale].comment_form_md_info | default: "Markdown is supported." }}</a></div>
|
<fieldset>
|
||||||
</div>
|
<label for="comment-form-url">{{ site.data.ui-text[site.locale].comment_form_website_label | default: "Website (optional)" }}</label>
|
||||||
<div class="form-group">
|
<input type="url" id="comment-form-url" name="fields[url]" tabindex="4"/>
|
||||||
<label for="comment-form-name">{{ site.data.ui-text[site.locale].comment_form_name_label | default: "Name" }} <small class="required">*</small></label>
|
</fieldset>
|
||||||
<input type="text" id="comment-form-name" name="fields[name]" tabindex="2" />
|
<fieldset class="hidden" style="display: none;">
|
||||||
</div>
|
<input type="hidden" name="options[slug]" value="{{ page.slug }}">
|
||||||
<div class="form-group">
|
<label for="comment-form-location">Not used. Leave blank if you are a human.</label>
|
||||||
<label for="comment-form-email">{{ site.data.ui-text[site.locale].comment_form_email_label | default: "Email address" }} <small class="required">*</small></label>
|
<input type="text" id="comment-form-location" name="fields[hidden]" autocomplete="off"/>
|
||||||
<input type="email" id="comment-form-email" name="fields[email]" tabindex="3" />
|
</fieldset>
|
||||||
</div>
|
<!-- Start comment form alert messaging -->
|
||||||
<div class="form-group">
|
<p class="hidden js-notice">
|
||||||
<label for="comment-form-url">{{ site.data.ui-text[site.locale].comment_form_website_label | default: "Website (optional)" }}</label>
|
<strong class="js-notice-text"></strong>
|
||||||
<input type="url" id="comment-form-url" name="fields[url]" tabindex="4"/>
|
</p>
|
||||||
</div>
|
<!-- End comment form alert messaging -->
|
||||||
<div class="form-group hidden" style="display: none;">
|
<fieldset>
|
||||||
<input type="hidden" name="options[slug]" value="{{ page.slug }}">
|
<button type="submit" id="comment-form-submit" tabindex="5" class="btn btn--primary btn--large">{{ site.data.ui-text[site.locale].comment_btn_submit | default: "Submit Comment" }}</button>
|
||||||
<label for="comment-form-location">Not used. Leave blank if you are a human.</label>
|
</fieldset>
|
||||||
<input type="text" id="comment-form-location" name="fields[hidden]" autocomplete="off"/>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<!-- Start comment form alert messaging -->
|
<!-- End new comment form -->
|
||||||
<p class="hidden js-notice">
|
{% endif %}
|
||||||
<strong class="js-notice-text"></strong>
|
</section>
|
||||||
</p>
|
{% when "custom" %}
|
||||||
<!-- End comment form alert messaging -->
|
<section id="custom-comments"></section>
|
||||||
<div class="form-group">
|
|
||||||
<button type="submit" id="comment-form-submit" tabindex="5" class="btn btn--primary btn--large">{{ site.data.ui-text[site.locale].comment_btn_submit | default: "Submit Comment" }}</button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
<!-- End new comment form -->
|
|
||||||
{% endif %}
|
|
||||||
</section>
|
|
||||||
{% when "utterances" %}
|
|
||||||
<h4 class="page__comments-title">{{ comments_label }}</h4>
|
|
||||||
<section id="utterances-comments"></section>
|
|
||||||
{% when "custom" %}
|
|
||||||
<section id="custom-comments"></section>
|
|
||||||
{% endcase %}
|
{% endcase %}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
{% assign entries = site[include.collection] %}
|
|
||||||
|
|
||||||
{% if include.sort_by == 'title' %}
|
|
||||||
{% if include.sort_order == 'reverse' %}
|
|
||||||
{% assign entries = entries | sort: 'title' | reverse %}
|
|
||||||
{% else %}
|
|
||||||
{% assign entries = entries | sort: 'title' %}
|
|
||||||
{% endif %}
|
|
||||||
{% elsif include.sort_by == 'date' %}
|
|
||||||
{% if include.sort_order == 'reverse' %}
|
|
||||||
{% assign entries = entries | sort: 'date' | reverse %}
|
|
||||||
{% else %}
|
|
||||||
{% assign entries = entries | sort: 'date' %}
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{%- for post in entries -%}
|
|
||||||
{% include archive-single.html %}
|
|
||||||
{%- endfor -%}
|
|
9
_includes/feature_row
Normal file → Executable file
9
_includes/feature_row
Normal file → Executable file
|
@ -11,7 +11,7 @@
|
||||||
{% if f.url contains "://" %}
|
{% if f.url contains "://" %}
|
||||||
{% capture f_url %}{{ f.url }}{% endcapture %}
|
{% capture f_url %}{{ f.url }}{% endcapture %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% capture f_url %}{{ f.url | relative_url }}{% endcapture %}
|
{% capture f_url %}{{ f.url | absolute_url }}{% endcapture %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div class="feature__item{% if include.type %}--{{ include.type }}{% endif %}">
|
<div class="feature__item{% if include.type %}--{{ include.type }}{% endif %}">
|
||||||
|
@ -22,12 +22,9 @@
|
||||||
{% if f.image_path contains "://" %}
|
{% if f.image_path contains "://" %}
|
||||||
"{{ f.image_path }}"
|
"{{ f.image_path }}"
|
||||||
{% else %}
|
{% else %}
|
||||||
"{{ f.image_path | relative_url }}"
|
"{{ f.image_path | absolute_url }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
alt="{% if f.alt %}{{ f.alt }}{% endif %}">
|
alt="{% if f.alt %}{{ f.alt }}{% endif %}">
|
||||||
{% if f.image_caption %}
|
|
||||||
<span class="archive__item-caption">{{ f.image_caption | markdownify | remove: "<p>" | remove: "</p>" }}</span>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
@ -50,4 +47,4 @@
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
8
_includes/figure
Normal file → Executable file
8
_includes/figure
Normal file → Executable file
|
@ -3,10 +3,10 @@
|
||||||
{% if include.image_path contains "://" %}
|
{% if include.image_path contains "://" %}
|
||||||
"{{ include.image_path }}"
|
"{{ include.image_path }}"
|
||||||
{% else %}
|
{% else %}
|
||||||
"{{ include.image_path | relative_url }}"
|
"{{ include.image_path | absolute_url }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
alt="{% if include.alt %}{{ include.alt }}{% endif %}">
|
alt="{% if include.alt %}{{ include.alt }}{% endif %}">
|
||||||
{% if include.caption %}
|
{% if include.caption %}
|
||||||
<figcaption>
|
<figcaption>{{ include.caption | markdownify | remove: "<p>" | remove: "</p>" }}</figcaption>
|
||||||
{{ include.caption | markdownify | remove: "<p>" | remove: "</p>" }}
|
{% endif %}
|
||||||
</figcaption>{% endif %}</figure>
|
</figure>
|
||||||
|
|
24
_includes/footer.html
Normal file → Executable file
24
_includes/footer.html
Normal file → Executable file
|
@ -1,19 +1,5 @@
|
||||||
<div class="page__footer-follow">
|
{% include base_path %}
|
||||||
<ul class="social-icons">
|
{% assign split_path = page.path | split: "/" %}
|
||||||
{% if site.data.ui-text[site.locale].follow_label %}
|
{% assign locale = split_path[1] %}
|
||||||
<li><strong>{{ site.data.ui-text[site.locale].follow_label }}</strong></li>
|
{% assign titles = site.data.navigation[locale].footer %}
|
||||||
{% endif %}
|
<div class="page__footer-copyright">© {{ site.time | date: '%Y' }} <a href="https://rc24.xyz/">{{ site.name | default: site.title }}</a> - <a href="https://github.com/RiiConnect24/Wii-Guide">{{ titles[0].title }}</a> - <a href="site-navigation">{{ titles[1].title }}</a></div>
|
||||||
|
|
||||||
{% if site.footer.links %}
|
|
||||||
{% for link in site.footer.links %}
|
|
||||||
{% if link.label and link.url %}
|
|
||||||
<li><a href="{{ link.url }}" rel="nofollow noopener noreferrer"><i class="{{ link.icon | default: 'fas fa-link' }}" aria-hidden="true"></i> {{ link.label }}</a></li>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
<li><a href="{% if site.atom_feed.path %}{{ site.atom_feed.path }}{% else %}{{ '/feed.xml' | relative_url }}{% endif %}"><i class="fas fa-fw fa-rss-square" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].feed_label | default: "Feed" }}</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="page__footer-copyright">© {{ site.time | date: '%Y' }} {{ site.name | default: site.title }}. {{ site.data.ui-text[site.locale].powered_by | default: "Powered by" }} <a href="https://jekyllrb.com" rel="nofollow">Jekyll</a> & <a href="https://mademistakes.com/work/minimal-mistakes-jekyll-theme/" rel="nofollow">Minimal Mistakes</a>.</div>
|
|
||||||
|
|
2
_includes/footer/custom.html
Normal file → Executable file
2
_includes/footer/custom.html
Normal file → Executable file
|
@ -1,3 +1,3 @@
|
||||||
<!-- start custom footer snippets -->
|
<!-- start custom footer snippets -->
|
||||||
|
|
||||||
<!-- end custom footer snippets -->
|
<!-- end custom footer snippets -->
|
||||||
|
|
22
_includes/gallery
Normal file → Executable file
22
_includes/gallery
Normal file → Executable file
|
@ -4,16 +4,12 @@
|
||||||
{% assign gallery = page.gallery %}
|
{% assign gallery = page.gallery %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if include.layout %}
|
{% if gallery.size == 2 %}
|
||||||
{% assign gallery_layout = include.layout %}
|
{% assign gallery_layout = 'half' %}
|
||||||
|
{% elsif gallery.size >= 3 %}
|
||||||
|
{% assign gallery_layout = 'third' %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% if gallery.size == 2 %}
|
{% assign gallery_layout = '' %}
|
||||||
{% assign gallery_layout = 'half' %}
|
|
||||||
{% elsif gallery.size >= 3 %}
|
|
||||||
{% assign gallery_layout = 'third' %}
|
|
||||||
{% else %}
|
|
||||||
{% assign gallery_layout = '' %}
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<figure class="{{ gallery_layout }} {{ include.class }}">
|
<figure class="{{ gallery_layout }} {{ include.class }}">
|
||||||
|
@ -23,7 +19,7 @@
|
||||||
{% if img.url contains "://" %}
|
{% if img.url contains "://" %}
|
||||||
"{{ img.url }}"
|
"{{ img.url }}"
|
||||||
{% else %}
|
{% else %}
|
||||||
"{{ img.url | relative_url }}"
|
"{{ img.url | absolute_url }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if img.title %}title="{{ img.title }}"{% endif %}
|
{% if img.title %}title="{{ img.title }}"{% endif %}
|
||||||
>
|
>
|
||||||
|
@ -31,7 +27,7 @@
|
||||||
{% if img.image_path contains "://" %}
|
{% if img.image_path contains "://" %}
|
||||||
"{{ img.image_path }}"
|
"{{ img.image_path }}"
|
||||||
{% else %}
|
{% else %}
|
||||||
"{{ img.image_path | relative_url }}"
|
"{{ img.image_path | absolute_url }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
alt="{% if img.alt %}{{ img.alt }}{% endif %}">
|
alt="{% if img.alt %}{{ img.alt }}{% endif %}">
|
||||||
</a>
|
</a>
|
||||||
|
@ -40,7 +36,7 @@
|
||||||
{% if img.image_path contains "://" %}
|
{% if img.image_path contains "://" %}
|
||||||
"{{ img.image_path }}"
|
"{{ img.image_path }}"
|
||||||
{% else %}
|
{% else %}
|
||||||
"{{ img.image_path | relative_url }}"
|
"{{ img.image_path | absolute_url }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
alt="{% if img.alt %}{{ img.alt }}{% endif %}">
|
alt="{% if img.alt %}{{ img.alt }}{% endif %}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -48,4 +44,4 @@
|
||||||
{% if include.caption %}
|
{% if include.caption %}
|
||||||
<figcaption>{{ include.caption | markdownify | remove: "<p>" | remove: "</p>" }}</figcaption>
|
<figcaption>{{ include.caption | markdownify | remove: "<p>" | remove: "</p>" }}</figcaption>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</figure>
|
</figure>
|
||||||
|
|
2
_includes/group-by-array
Normal file → Executable file
2
_includes/group-by-array
Normal file → Executable file
|
@ -44,4 +44,4 @@
|
||||||
|
|
||||||
<!-- Push to group_items -->
|
<!-- Push to group_items -->
|
||||||
{% assign group_items = group_items | push: __item %}
|
{% assign group_items = group_items | push: __item %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
12
_includes/head.html
Normal file → Executable file
12
_includes/head.html
Normal file → Executable file
|
@ -2,9 +2,11 @@
|
||||||
|
|
||||||
{% include seo.html %}
|
{% include seo.html %}
|
||||||
|
|
||||||
<link href="{% if site.atom_feed.path %}{{ site.atom_feed.path }}{% else %}{{ '/feed.xml' | relative_url }}{% endif %}" type="application/atom+xml" rel="alternate" title="{{ site.title }} Feed">
|
<link href="{% if site.atom_feed.path %}{{ site.atom_feed.path }}{% else %}{{ '/feed.xml' | absolute_url }}{% endif %}" type="application/atom+xml" rel="alternate" title="{{ site.title }} Feed">
|
||||||
|
|
||||||
<!-- https://t.co/dKP3o1e -->
|
<!-- http://t.co/dKP3o1e -->
|
||||||
|
<meta name="HandheldFriendly" content="True">
|
||||||
|
<meta name="MobileOptimized" content="320">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -12,9 +14,9 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<!-- For all browsers -->
|
<!-- For all browsers -->
|
||||||
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
|
<link rel="stylesheet" href="{{ '/assets/css/main.css' | absolute_url }}">
|
||||||
|
|
||||||
<!--[if IE ]>
|
<!--[if lte IE 9]>
|
||||||
<style>
|
<style>
|
||||||
/* old IE unsupported flexbox fixes */
|
/* old IE unsupported flexbox fixes */
|
||||||
.greedy-nav .site-title {
|
.greedy-nav .site-title {
|
||||||
|
@ -34,7 +36,7 @@
|
||||||
{% if script contains "://" %}
|
{% if script contains "://" %}
|
||||||
{% capture script_path %}{{ script }}{% endcapture %}
|
{% capture script_path %}{{ script }}{% endcapture %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% capture script_path %}{{ script | relative_url }}{% endcapture %}
|
{% capture script_path %}{{ script | absolute_url }}{% endcapture %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<script src="{{ script_path }}"></script>
|
<script src="{{ script_path }}"></script>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
22
_includes/head/custom.html
Normal file → Executable file
22
_includes/head/custom.html
Normal file → Executable file
|
@ -1,5 +1,25 @@
|
||||||
<!-- start custom head snippets -->
|
<!-- start custom head snippets -->
|
||||||
|
{% include base_path %}
|
||||||
|
<!-- insert favicons. use http://realfavicongenerator.net/ -->
|
||||||
|
|
||||||
<!-- insert favicons. use https://realfavicongenerator.net/ -->
|
<script type="text/javascript">
|
||||||
|
var host = "3ds.guide";
|
||||||
|
if ((host == window.location.host) && (window.location.protocol != "https:"))
|
||||||
|
window.location.protocol = "https";
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ base_path }}/images/apple-touch-icon.png?v=PYEmwKvQAx">
|
||||||
|
<link rel="icon" type="image/png" href="{{ base_path }}/images/favicon-32x32.png?v=PYEmwKvQAx" sizes="32x32">
|
||||||
|
<link rel="icon" type="image/png" href="{{ base_path }}/images/favicon-194x194.png?v=PYEmwKvQAx" sizes="194x194">
|
||||||
|
<link rel="icon" type="image/png" href="{{ base_path }}/images/android-chrome-192x192.png?v=PYEmwKvQAx" sizes="192x192">
|
||||||
|
<link rel="icon" type="image/png" href="{{ base_path }}/images/favicon-16x16.png?v=PYEmwKvQAx" sizes="16x16">
|
||||||
|
<link rel="manifest" href="{{ base_path }}/images/manifest.json?v=PYEmwKvQAx">
|
||||||
|
<link rel="mask-icon" href="{{ base_path }}/images/safari-pinned-tab.svg?v=PYEmwKvQAx" color="#2E3440">
|
||||||
|
<link rel="shortcut icon" href="{{ base_path }}/images/favicon.ico?v=PYEmwKvQAx">
|
||||||
|
<meta name="apple-mobile-web-app-title" content="Guide">
|
||||||
|
<meta name="application-name" content="Guide">
|
||||||
|
<meta name="msapplication-TileColor" content="#2E3440">
|
||||||
|
<meta name="msapplication-TileImage" content="{{ base_path }}/images/mstile-144x144.png?v=PYEmwKvQAx">
|
||||||
|
<meta name="msapplication-config" content="{{ base_path }}/images/browserconfig.xml?v=PYEmwKvQAx">
|
||||||
|
<meta name="theme-color" content="#2E3440">
|
||||||
<!-- end custom head snippets -->
|
<!-- end custom head snippets -->
|
||||||
|
|
114
_includes/masthead.html
Normal file → Executable file
114
_includes/masthead.html
Normal file → Executable file
|
@ -1,43 +1,71 @@
|
||||||
{% if site.logo contains "://" %}
|
<div class="masthead">
|
||||||
{% capture logo_path %}{{ site.logo }}{% endcapture %}
|
<div class="masthead__inner-wrap">
|
||||||
{% else %}
|
<div class="masthead__menu">
|
||||||
{% capture logo_path %}{{ site.logo }}{% endcapture %}
|
<nav id="site-nav" class="greedy-nav">
|
||||||
{% endif %}
|
<ul class="visible-links">
|
||||||
|
{% assign split_path = page.path | split: "/" %}
|
||||||
<div class="masthead">
|
{% assign locale = split_path[1] %}
|
||||||
<div class="masthead__inner-wrap">
|
{% assign titles = site.data.navigation[locale].main %}
|
||||||
<div class="masthead__menu">
|
{% if locale == 'en_US' %}
|
||||||
<nav id="site-nav" class="greedy-nav">
|
{% assign locale_var = '/' %}
|
||||||
{% unless logo_path == empty %}
|
{% else %}
|
||||||
<a class="site-logo" href="{{ '/' | relative_url }}"><img src="{{ logo_path | relative_url }}" alt=""></a>
|
{% assign locale_var = locale | prepend:'/' | append:'/' %}
|
||||||
{% endunless %}
|
{% endif %}
|
||||||
<a class="site-title" href="{{ '/' | relative_url }}">{{ site.masthead_title | default: site.title }}</a>
|
{% for link in site.data.navigation[locale].main %}
|
||||||
<ul class="visible-links">
|
{% if link.url == "/" %}
|
||||||
{%- for link in site.data.navigation.main -%}
|
<li class="masthead__menu-item masthead__menu-item--lg"><a href="{{ domain }}{{ locale_var }}">{{ link.title }}</a></li>
|
||||||
{%- if link.url contains '://' -%}
|
{% else %}
|
||||||
{%- assign url = link.url -%}
|
<li class="masthead__menu-item"><a href="{{ domain }}{{ locale_var }}{{ link.url }}">{{ link.title }}</a></li>
|
||||||
{%- else -%}
|
{% endif %}
|
||||||
{%- assign url = link.url | relative_url -%}
|
{% endfor %}
|
||||||
{%- endif -%}
|
</ul>
|
||||||
<li class="masthead__menu-item">
|
<ul class="hidden-links links-menu hidden"></ul>
|
||||||
<a href="{{ url }}" {% if link.description %}title="{{ link.description }}"{% endif %}>{{ link.title }}</a>
|
<ul class="hidden-links lang-menu hidden">
|
||||||
</li>
|
{% assign split_url = page.url | split: "/" %}
|
||||||
{%- endfor -%}
|
{% if split_url.size == 3 %}
|
||||||
</ul>
|
{% assign langless_url = split_url[2] %}
|
||||||
{% if site.search == true %}
|
{% else %}
|
||||||
<button class="search__toggle" type="button">
|
{% assign langless_url = split_url[1] %}
|
||||||
<span class="visually-hidden">{{ site.data.ui-text[site.locale].search_label | default: "Toggle search" }}</span>
|
{% endif %}
|
||||||
<svg class="icon" width="16" height="16" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15.99 16">
|
{% if langless_url == "index.html" %}
|
||||||
<path d="M15.5,13.12L13.19,10.8a1.69,1.69,0,0,0-1.28-.55l-0.06-.06A6.5,6.5,0,0,0,5.77,0,6.5,6.5,0,0,0,2.46,11.59a6.47,6.47,0,0,0,7.74.26l0.05,0.05a1.65,1.65,0,0,0,.5,1.24l2.38,2.38A1.68,1.68,0,0,0,15.5,13.12ZM6.4,2A4.41,4.41,0,1,1,2,6.4,4.43,4.43,0,0,1,6.4,2Z" transform="translate(-.01)"></path>
|
{% assign langless_url = "" %}
|
||||||
</svg>
|
{% endif %}
|
||||||
</button>
|
<li class="masthead__menu-item"><a href="{{ site.url }}/{{ langless_url }}">English</a></li>
|
||||||
{% endif %}
|
<li class="masthead__menu-item"><a href="{{ site.url }}/es_MX/{{ langless_url }}">Español</a></li>
|
||||||
<button class="greedy-nav__toggle hidden" type="button">
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/de_DE/{{ langless_url }}">Deutsch</a></li> -->
|
||||||
<span class="visually-hidden">{{ site.data.ui-text[site.locale].menu_label | default: "Toggle menu" }}</span>
|
<li class="masthead__menu-item"><a href="{{ site.url }}/fr_FR/{{ langless_url }}">Français</a></li>
|
||||||
<div class="navicon"></div>
|
<li class="masthead__menu-item"><a href="{{ site.url }}/it_IT/{{ langless_url }}">Italiano</a></li>
|
||||||
</button>
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/nl_NL/{{ langless_url }}">Nederlands</a></li> -->
|
||||||
<ul class="hidden-links hidden"></ul>
|
<li class="masthead__menu-item"><a href="{{ site.url }}/pt_BR/{{ langless_url }}">Português do Brasil</a></li>
|
||||||
</nav>
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/pt_PT/{{ langless_url }}">Português (Portugal)</a></li> -->
|
||||||
</div>
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/ru_RU/{{ langless_url }}">Русский</a></li> -->
|
||||||
</div>
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/zh_CN/{{ langless_url }}">简体中文</a></li> -->
|
||||||
</div>
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/zh_TW/{{ langless_url }}">繁體中文</a></li> -->
|
||||||
|
<li class="masthead__menu-item"><a href="{{ site.url }}/pl_PL/{{ langless_url }}">Polski</a></li>
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/tr_TR/{{ langless_url }}">Türkçe</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/vi_VN/{{ langless_url }}">Tiếng Việt</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/ca_ES/{{ langless_url }}">Català</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/el_GR/{{ langless_url }}">Ελληνικά</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/he_IL/{{ langless_url }}">עברית</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/sv_SE/{{ langless_url }}">Svenska</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/ko_KR/{{ langless_url }}">한국어</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/no_NO/{{ langless_url }}">Norsk</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/ja_JP/{{ langless_url }}">日本語</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/ar_SA/{{ langless_url }}">اللغة العربية</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/hu_HU/{{ langless_url }}">Magyar</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/ro_RO/{{ langless_url }}">Română</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/sr_SP/{{ langless_url }}">Српски</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/af_ZA/{{ langless_url }}">Afrikaans</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/ms_MY/{{ langless_url }}">Bahasa Melayu</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/fi_FI/{{ langless_url }}">Suomi</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/da_DK/{{ langless_url }}">Dansk</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/uk_UA/{{ langless_url }}">Українська</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/cs_CZ/{{ langless_url }}">Čeština</a></li> -->
|
||||||
|
<!-- <li class="masthead__menu-item"><a href="{{ site.url }}/en_PT/{{ langless_url }}">Pirate English</a></li> -->
|
||||||
|
</ul>
|
||||||
|
<button class="navsel"><div class="navicon"></div></button>
|
||||||
|
<button class="langsel"><div class="langicon"><i class="fa fa-language fa-lg" aria-hidden="true"></i></div></button>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
61
_includes/nav_list
Normal file → Executable file
61
_includes/nav_list
Normal file → Executable file
|
@ -1,47 +1,32 @@
|
||||||
{% assign navigation = site.data.navigation[include.nav] %}
|
{% assign split_path = page.path | split: "/" %}
|
||||||
|
{% assign locale = split_path[1] %}
|
||||||
|
{% if locale == 'en_US' %}
|
||||||
|
{% assign locale_var = '/' %}
|
||||||
|
{% else %}
|
||||||
|
{% assign locale_var = locale | prepend:'/' | append:'/' %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% assign title = site.data.navigation[locale].sidebar_title %}
|
||||||
|
{% assign navigation = site.data.navigation[locale].sidebar_pages %}
|
||||||
|
|
||||||
<nav class="nav__list">
|
<nav class="nav__list">
|
||||||
{% if page.sidebar.title %}<h3 class="nav__title" style="padding-left: 0;">{{ page.sidebar.title }}</h3>{% endif %}
|
{% if page.sidebar.title %}<h3 class="nav__title" style="padding-left: 0;">{{ page.sidebar.title }}</h3>{% endif %}
|
||||||
<input id="ac-toc" name="accordion-toc" type="checkbox" />
|
<input id="ac-toc" name="accordion-toc" type="checkbox" />
|
||||||
<label for="ac-toc">{{ site.data.ui-text[site.locale].menu_label | default: "Toggle Menu" }}</label>
|
<label for="ac-toc">{{ site.data.ui-text[site.locale].menu_label | default: "Toggle Menu" }}</label>
|
||||||
<ul class="nav__items">
|
<ul class="nav__items">
|
||||||
{% for nav in navigation %}
|
<li>
|
||||||
<li>
|
<span class="nav__sub-title">{{ title[0].title }}</span>
|
||||||
{% if nav.url %}
|
<ol>
|
||||||
{% comment %} internal/external URL check {% endcomment %}
|
{% for link in site.data.navigation[locale].sidebar_pages %}
|
||||||
{% if nav.url contains "://" %}
|
{% if link.url == "/" %}
|
||||||
{% assign nav_url = nav.url %}
|
<li style="display: none;" data-name="home"><a href='{{ domain }}{{ locale_var }}'>{{ link.title }}</a></li>
|
||||||
|
{% elsif link.url == "multiple-options" %}
|
||||||
|
<li style="display: none;" data-name="multiple-options"><i>({{ link.title }})</i></li>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% assign nav_url = nav.url | relative_url %}
|
<li style="display: none;" data-name="{{ site.data.navigation.en_US.sidebar_pages[forloop.index0].url }}"><a href='{{ domain }}{{ locale_var }}{{ link.url }}'>{{ link.title }}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
<a href="{{ nav_url }}"><span class="nav__sub-title">{{ nav.title }}</span></a>
|
</ol>
|
||||||
{% else %}
|
</li>
|
||||||
<span class="nav__sub-title">{{ nav.title }}</span>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if nav.children != null %}
|
|
||||||
<ul>
|
|
||||||
{% for child in nav.children %}
|
|
||||||
{% comment %} internal/external URL check {% endcomment %}
|
|
||||||
{% if child.url contains "://" %}
|
|
||||||
{% assign child_url = child.url %}
|
|
||||||
{% else %}
|
|
||||||
{% assign child_url = child.url | relative_url %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% comment %} set "active" class on current page {% endcomment %}
|
|
||||||
{% if child.url == page.url %}
|
|
||||||
{% assign active = "active" %}
|
|
||||||
{% else %}
|
|
||||||
{% assign active = "" %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
<li><a href="{{ child_url }}" class="{{ active }}">{{ child.title }}</a></li>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
{% endif %}
|
|
||||||
</li>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
25
_includes/page__hero.html
Normal file → Executable file
25
_includes/page__hero.html
Normal file → Executable file
|
@ -1,19 +1,19 @@
|
||||||
{% if page.header.image contains "://" %}
|
{% if page.header.image contains "://" %}
|
||||||
{% capture img_path %}{{ page.header.image }}{% endcapture %}
|
{% capture img_path %}{{ page.header.image }}{% endcapture %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% capture img_path %}{{ page.header.image | relative_url }}{% endcapture %}
|
{% capture img_path %}{{ page.header.image | absolute_url }}{% endcapture %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if page.header.cta_url contains "://" %}
|
{% if page.header.cta_url contains "://" %}
|
||||||
{% capture cta_path %}{{ page.header.cta_url }}{% endcapture %}
|
{% capture cta_path %}{{ page.header.cta_url }}{% endcapture %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% capture cta_path %}{{ page.header.cta_url | relative_url }}{% endcapture %}
|
{% capture cta_path %}{{ page.header.cta_url | absolute_url }}{% endcapture %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if page.header.overlay_image contains "://" %}
|
{% if page.header.overlay_image contains "://" %}
|
||||||
{% capture overlay_img_path %}{{ page.header.overlay_image }}{% endcapture %}
|
{% capture overlay_img_path %}{{ page.header.overlay_image }}{% endcapture %}
|
||||||
{% elsif page.header.overlay_image %}
|
{% elsif page.header.overlay_image %}
|
||||||
{% capture overlay_img_path %}{{ page.header.overlay_image | relative_url }}{% endcapture %}
|
{% capture overlay_img_path %}{{ page.header.overlay_image | absolute_url }}{% endcapture %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if page.header.overlay_filter contains "rgba" %}
|
{% if page.header.overlay_filter contains "rgba" %}
|
||||||
|
@ -35,33 +35,22 @@
|
||||||
>
|
>
|
||||||
{% if page.header.overlay_color or page.header.overlay_image %}
|
{% if page.header.overlay_color or page.header.overlay_image %}
|
||||||
<div class="wrapper">
|
<div class="wrapper">
|
||||||
<h1 id="page-title" class="page__title" itemprop="headline">
|
<h1 class="page__title" itemprop="headline">
|
||||||
{% if paginator and site.paginate_show_page_num %}
|
{% if paginator and site.paginate_show_page_num %}
|
||||||
{{ site.title }}{% unless paginator.page == 1 %} {{ site.data.ui-text[site.locale].page | default: "Page" }} {{ paginator.page }}{% endunless %}
|
{{ site.title }}{% unless paginator.page == 1 %} {{ site.data.ui-text[site.locale].page | default: "Page" }} {{ paginator.page }}{% endunless %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ page.title | default: site.title | markdownify | remove: "<p>" | remove: "</p>" }}
|
{{ page.title | default: site.title | markdownify | remove: "<p>" | remove: "</p>" }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</h1>
|
</h1>
|
||||||
{% if page.header.show_overlay_excerpt != false and page.excerpt %}
|
{% if page.excerpt %}
|
||||||
<p class="page__lead">{{ page.excerpt | markdownify | remove: "<p>" | remove: "</p>" }}</p>
|
<p class="page__lead">{{ page.excerpt | markdownify | remove: "<p>" | remove: "</p>" }}</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if page.read_time %}
|
{% if site.read_time and page.read_time %}
|
||||||
<p class="page__meta"><i class="far fa-clock" aria-hidden="true"></i> {% include read-time.html %}</p>
|
<p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if page.header.cta_url %}
|
{% if page.header.cta_url %}
|
||||||
<p><a href="{{ cta_path }}" class="btn btn--light-outline btn--large">{{ page.header.cta_label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}</a></p>
|
<p><a href="{{ cta_path }}" class="btn btn--light-outline btn--large">{{ page.header.cta_label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}</a></p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if page.header.actions %}
|
|
||||||
<p>
|
|
||||||
{% for action in page.header.actions %}
|
|
||||||
{% if action.url contains "://" %}
|
|
||||||
{% assign url = action.url %}
|
|
||||||
{% else %}
|
|
||||||
{% assign url = action.url | relative_url %}
|
|
||||||
{% endif %}
|
|
||||||
<a href="{{ url }}" class="btn btn--light-outline btn--large">{{ action.label | default: site.data.ui-text[site.locale].more_label | default: "Learn More" }}</a>
|
|
||||||
{% endfor %}
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
</div>
|
||||||
{% else %}
|
{% else %}
|
||||||
<img src="{{ img_path }}" alt="{{ image_description }}" class="page__hero-image">
|
<img src="{{ img_path }}" alt="{{ image_description }}" class="page__hero-image">
|
||||||
|
|
0
_includes/page__hero_video.html
Normal file → Executable file
0
_includes/page__hero_video.html
Normal file → Executable file
2
_includes/page__taxonomy.html
Normal file → Executable file
2
_includes/page__taxonomy.html
Normal file → Executable file
|
@ -4,4 +4,4 @@
|
||||||
|
|
||||||
{% if site.category_archive.type and page.categories[0] %}
|
{% if site.category_archive.type and page.categories[0] %}
|
||||||
{% include category-list.html %}
|
{% include category-list.html %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
12
_includes/paginator.html
Normal file → Executable file
12
_includes/paginator.html
Normal file → Executable file
|
@ -1,13 +1,13 @@
|
||||||
{% if paginator.total_pages > 1 %}
|
{% if paginator.total_pages > 1 %}
|
||||||
<nav class="pagination">
|
<nav class="pagination">
|
||||||
{% assign first_page_path = site.paginate_path | replace: 'page:num', '' | replace: '//', '/' | relative_url %}
|
{% assign first_page_path = site.paginate_path | replace: 'page:num', '' | replace: '//', '/' | absolute_url %}
|
||||||
<ul>
|
<ul>
|
||||||
{% comment %} Link for previous page {% endcomment %}
|
{% comment %} Link for previous page {% endcomment %}
|
||||||
{% if paginator.previous_page %}
|
{% if paginator.previous_page %}
|
||||||
{% if paginator.previous_page == 1 %}
|
{% if paginator.previous_page == 1 %}
|
||||||
<li><a href="{{ first_page_path }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a></li>
|
<li><a href="{{ first_page_path }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a></li>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li><a href="{{ site.paginate_path | replace: ':num', paginator.previous_page | replace: '//', '/' | relative_url }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a></li>
|
<li><a href="{{ site.paginate_path | replace: ':num', paginator.previous_page | replace: '//', '/' | absolute_url }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% else %}
|
{% else %}
|
||||||
<li><a href="#" class="disabled"><span aria-hidden="true">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</span></a></li>
|
<li><a href="#" class="disabled"><span aria-hidden="true">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</span></a></li>
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
{% for index in (page_start..page_end) %}
|
{% for index in (page_start..page_end) %}
|
||||||
{% if index == paginator.page %}
|
{% if index == paginator.page %}
|
||||||
<li><a href="{{ site.paginate_path | replace: ':num', index | replace: '//', '/' | relative_url }}" class="disabled current">{{ index }}</a></li>
|
<li><a href="{{ site.paginate_path | replace: ':num', index | replace: '//', '/' | absolute_url }}" class="disabled current">{{ index }}</a></li>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% comment %} Distance from current page and this link {% endcomment %}
|
{% comment %} Distance from current page and this link {% endcomment %}
|
||||||
{% assign dist = paginator.page | minus: index %}
|
{% assign dist = paginator.page | minus: index %}
|
||||||
|
@ -43,7 +43,7 @@
|
||||||
{% comment %} Distance must be a positive value {% endcomment %}
|
{% comment %} Distance must be a positive value {% endcomment %}
|
||||||
{% assign dist = 0 | minus: dist %}
|
{% assign dist = 0 | minus: dist %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<li><a href="{{ site.paginate_path | replace: ':num', index | relative_url }}">{{ index }}</a></li>
|
<li><a href="{{ site.paginate_path | replace: ':num', index | absolute_url }}">{{ index }}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
@ -55,12 +55,12 @@
|
||||||
{% if paginator.page == paginator.total_pages %}
|
{% if paginator.page == paginator.total_pages %}
|
||||||
<li><a href="#" class="disabled current">{{ paginator.page }}</a></li>
|
<li><a href="#" class="disabled current">{{ paginator.page }}</a></li>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li><a href="{{ site.paginate_path | replace: ':num', paginator.total_pages | replace: '//', '/' | relative_url }}">{{ paginator.total_pages }}</a></li>
|
<li><a href="{{ site.paginate_path | replace: ':num', paginator.total_pages | replace: '//', '/' | absolute_url }}">{{ paginator.total_pages }}</a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% comment %} Link next page {% endcomment %}
|
{% comment %} Link next page {% endcomment %}
|
||||||
{% if paginator.next_page %}
|
{% if paginator.next_page %}
|
||||||
<li><a href="{{ site.paginate_path | replace: ':num', paginator.next_page | replace: '//', '/' | relative_url }}">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a></li>
|
<li><a href="{{ site.paginate_path | replace: ':num', paginator.next_page | replace: '//', '/' | absolute_url }}">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a></li>
|
||||||
{% else %}
|
{% else %}
|
||||||
<li><a href="#" class="disabled"><span aria-hidden="true">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</span></a></li>
|
<li><a href="#" class="disabled"><span aria-hidden="true">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</span></a></li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
6
_includes/post_pagination.html
Normal file → Executable file
6
_includes/post_pagination.html
Normal file → Executable file
|
@ -1,14 +1,14 @@
|
||||||
{% if page.previous or page.next %}
|
{% if page.previous or page.next %}
|
||||||
<nav class="pagination">
|
<nav class="pagination">
|
||||||
{% if page.previous %}
|
{% if page.previous %}
|
||||||
<a href="{{ page.previous.url | relative_url }}" class="pagination--pager" title="{{ page.previous.title | markdownify | strip_html }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a>
|
<a href="{{ page.previous.url | absolute_url }}" class="pagination--pager" title="{{ page.previous.title | markdownify | strip_html }}">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="#" class="pagination--pager disabled">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a>
|
<a href="#" class="pagination--pager disabled">{{ site.data.ui-text[site.locale].pagination_previous | default: "Previous" }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if page.next %}
|
{% if page.next %}
|
||||||
<a href="{{ page.next.url | relative_url }}" class="pagination--pager" title="{{ page.next.title | markdownify | strip_html }}">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a>
|
<a href="{{ page.next.url | absolute_url }}" class="pagination--pager" title="{{ page.next.title | markdownify | strip_html }}">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="#" class="pagination--pager disabled">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a>
|
<a href="#" class="pagination--pager disabled">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</nav>
|
</nav>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
{%- for post in site.categories[include.taxonomy] -%}
|
|
||||||
{% include archive-single.html %}
|
|
||||||
{%- endfor -%}
|
|
|
@ -1,3 +0,0 @@
|
||||||
{%- for post in site.tags[include.taxonomy] -%}
|
|
||||||
{% include archive-single.html %}
|
|
||||||
{%- endfor -%}
|
|
2
_includes/read-time.html
Normal file → Executable file
2
_includes/read-time.html
Normal file → Executable file
|
@ -12,4 +12,4 @@
|
||||||
1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
|
1 {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ words | divided_by:words_per_minute }} {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
|
{{ words | divided_by:words_per_minute }} {{ site.data.ui-text[site.locale].minute_read | default: "minute read" }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
28
_includes/scripts.html
Normal file → Executable file
28
_includes/scripts.html
Normal file → Executable file
|
@ -3,37 +3,13 @@
|
||||||
{% if script contains "://" %}
|
{% if script contains "://" %}
|
||||||
{% capture script_path %}{{ script }}{% endcapture %}
|
{% capture script_path %}{{ script }}{% endcapture %}
|
||||||
{% else %}
|
{% else %}
|
||||||
{% capture script_path %}{{ script | relative_url }}{% endcapture %}
|
{% capture script_path %}{{ script | absolute_url }}{% endcapture %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<script src="{{ script_path }}"></script>
|
<script src="{{ script_path }}"></script>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% else %}
|
{% else %}
|
||||||
<script src="{{ '/assets/js/main.min.js' | relative_url }}"></script>
|
<script src="{{ '/assets/js/main.min.js' | absolute_url }}"></script>
|
||||||
<script src="https://kit.fontawesome.com/4eee35f757.js"></script>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if site.search == true or page.layout == "search" %}
|
|
||||||
{%- assign search_provider = site.search_provider | default: "lunr" -%}
|
|
||||||
{%- case search_provider -%}
|
|
||||||
{%- when "lunr" -%}
|
|
||||||
{% include_cached search/lunr-search-scripts.html %}
|
|
||||||
{%- when "google" -%}
|
|
||||||
{% include_cached search/google-search-scripts.html %}
|
|
||||||
{%- when "algolia" -%}
|
|
||||||
{% include_cached search/algolia-search-scripts.html %}
|
|
||||||
{%- endcase -%}
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% include analytics.html %}
|
{% include analytics.html %}
|
||||||
{% include /comments-providers/scripts.html %}
|
{% include /comments-providers/scripts.html %}
|
||||||
|
|
||||||
{% if site.after_footer_scripts %}
|
|
||||||
{% for script in site.after_footer_scripts %}
|
|
||||||
{% if script contains "://" %}
|
|
||||||
{% capture script_path %}{{ script }}{% endcapture %}
|
|
||||||
{% else %}
|
|
||||||
{% capture script_path %}{{ script | relative_url }}{% endcapture %}
|
|
||||||
{% endif %}
|
|
||||||
<script src="{{ script_path }}"></script>
|
|
||||||
{% endfor %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
|
@ -1,54 +0,0 @@
|
||||||
<!-- Including InstantSearch.js library and styling -->
|
|
||||||
<script src="https://cdn.jsdelivr.net/npm/instantsearch.js@2.3.3/dist/instantsearch.min.js"></script>
|
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/instantsearch.js@2.3.3/dist/instantsearch.min.css">
|
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/instantsearch.js@2.3.3/dist/instantsearch-theme-algolia.min.css">
|
|
||||||
|
|
||||||
<script>
|
|
||||||
// Instanciating InstantSearch.js with Algolia credentials
|
|
||||||
const search = instantsearch({
|
|
||||||
appId: '{{ site.algolia.application_id }}',
|
|
||||||
apiKey: '{{ site.algolia.search_only_api_key }}',
|
|
||||||
indexName: '{{ site.algolia.index_name }}',
|
|
||||||
searchParameters: {
|
|
||||||
restrictSearchableAttributes: [
|
|
||||||
'title',
|
|
||||||
'content'
|
|
||||||
]
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
const hitTemplate = function(hit) {
|
|
||||||
const url = hit.url;
|
|
||||||
const title = hit._highlightResult.title.value;
|
|
||||||
const content = hit._highlightResult.html.value;
|
|
||||||
|
|
||||||
return `
|
|
||||||
<div class="list__item">
|
|
||||||
<article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork">
|
|
||||||
<h2 class="archive__item-title" itemprop="headline"><a href="{{ site.baseurl }}${url}">${title}</a></h2>
|
|
||||||
<div class="archive__item-excerpt" itemprop="description">${content}</div>
|
|
||||||
</article>
|
|
||||||
</div>
|
|
||||||
`;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Adding searchbar and results widgets
|
|
||||||
search.addWidget(
|
|
||||||
instantsearch.widgets.searchBox({
|
|
||||||
container: '.search-searchbar',
|
|
||||||
{% unless site.algolia.powered_by == false %}poweredBy: true,{% endunless %}
|
|
||||||
placeholder: '{{ site.data.ui-text[site.locale].search_placeholder_text | default: "Enter your search term..." }}'
|
|
||||||
})
|
|
||||||
);
|
|
||||||
search.addWidget(
|
|
||||||
instantsearch.widgets.hits({
|
|
||||||
container: '.search-hits',
|
|
||||||
templates: {
|
|
||||||
item: hitTemplate
|
|
||||||
}
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
// Starting the search
|
|
||||||
search.start();
|
|
||||||
</script>
|
|
|
@ -1,30 +0,0 @@
|
||||||
<script>
|
|
||||||
(function () {
|
|
||||||
var cx = '{{ site.google.search_engine_id }}';
|
|
||||||
var gcse = document.createElement('script');
|
|
||||||
gcse.type = 'text/javascript';
|
|
||||||
gcse.async = true;
|
|
||||||
gcse.src = 'https://cse.google.com/cse.js?cx=' + cx;
|
|
||||||
var s = document.getElementsByTagName('script')[0];
|
|
||||||
s.parentNode.insertBefore(gcse, s);
|
|
||||||
})();
|
|
||||||
|
|
||||||
function googleCustomSearchExecute() {
|
|
||||||
var input = document.getElementById('cse-search-input-box-id');
|
|
||||||
var element = google.search.cse.element.getElement('searchresults-only0');
|
|
||||||
if (input.value == '') {
|
|
||||||
element.clearAllResults();
|
|
||||||
} else {
|
|
||||||
element.execute(input.value);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
{% if site.google.instant_search %}
|
|
||||||
$(document).ready(function () {
|
|
||||||
$('input#cse-search-input-box-id').on('keyup', function () {
|
|
||||||
googleCustomSearchExecute();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
{% endif %}
|
|
||||||
</script>
|
|
|
@ -1,10 +0,0 @@
|
||||||
{% assign lang = site.locale | slice: 0,2 | default: "en" %}
|
|
||||||
{% case lang %}
|
|
||||||
{% when "gr" %}
|
|
||||||
{% assign lang = "gr" %}
|
|
||||||
{% else %}
|
|
||||||
{% assign lang = "en" %}
|
|
||||||
{% endcase %}
|
|
||||||
<script src="{{ '/assets/js/lunr/lunr.min.js' | relative_url }}"></script>
|
|
||||||
<script src="{{ '/assets/js/lunr/lunr-store.js' | relative_url }}"></script>
|
|
||||||
<script src="{{ '/assets/js/lunr/lunr-' | append: lang | append: '.js' | relative_url }}"></script>
|
|
|
@ -1,18 +0,0 @@
|
||||||
<div class="search-content__inner-wrap">
|
|
||||||
{%- assign search_provider = site.search_provider | default: "lunr" -%}
|
|
||||||
{%- case search_provider -%}
|
|
||||||
{%- when "lunr" -%}
|
|
||||||
<input type="search" id="search" aria-placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" class="search-input" tabindex="-1" placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" />
|
|
||||||
<div id="results" class="results"></div>
|
|
||||||
{%- when "google" -%}
|
|
||||||
<form onsubmit="return googleCustomSearchExecute();" id="cse-search-box-form-id">
|
|
||||||
<input type="search" id="cse-search-input-box-id" aria-placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" class="search-input" tabindex="-1" placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" />
|
|
||||||
</form>
|
|
||||||
<div id="results" class="results">
|
|
||||||
<gcse:searchresults-only></gcse:searchresults-only>
|
|
||||||
</div>
|
|
||||||
{%- when "algolia" -%}
|
|
||||||
<div class="search-searchbar"></div>
|
|
||||||
<div class="search-hits"></div>
|
|
||||||
{%- endcase -%}
|
|
||||||
</div>
|
|
159
_includes/seo.html
Normal file → Executable file
159
_includes/seo.html
Normal file → Executable file
|
@ -1,113 +1,82 @@
|
||||||
<!-- begin _includes/seo.html -->
|
<!-- begin SEO -->
|
||||||
{%- if site.url -%}
|
{% if site.url %}
|
||||||
{%- assign seo_url = site.url | append: site.baseurl -%}
|
{% assign seo_url = site.url | append: site.baseurl %}
|
||||||
{%- endif -%}
|
{% endif %}
|
||||||
{%- assign seo_url = seo_url | default: site.github.url -%}
|
{% assign seo_url = seo_url | default: site.github.url %}
|
||||||
|
|
||||||
{% assign title_separator = site.title_separator | default: '-' | replace: '|', '|' %}
|
{% if page.title %}
|
||||||
|
{% assign seo_title = page.title | append: " " | append: site.title_separator | append: " " | append: site.title %}
|
||||||
{%- if page.title -%}
|
|
||||||
{%- assign seo_title = page.title | append: " " | append: title_separator | append: " " | append: site.title -%}
|
|
||||||
{%- endif -%}
|
|
||||||
|
|
||||||
{%- if seo_title -%}
|
|
||||||
{%- assign seo_title = seo_title | markdownify | strip_html | strip_newlines | escape_once -%}
|
|
||||||
{%- endif -%}
|
|
||||||
|
|
||||||
{% if page.canonical_url %}
|
|
||||||
{%- assign canonical_url = page.canonical_url %}
|
|
||||||
{% else %}
|
|
||||||
{%- assign canonical_url = page.url | replace: "index.html", "" | absolute_url %}
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{%- assign seo_description = page.description | default: page.excerpt | default: site.description -%}
|
{% if seo_title %}
|
||||||
{%- if seo_description -%}
|
{% assign seo_title = seo_title | markdownify | strip_html | strip_newlines | escape_once %}
|
||||||
{%- assign seo_description = seo_description | markdownify | strip_html | strip_newlines | escape_once -%}
|
{% endif %}
|
||||||
{%- endif -%}
|
|
||||||
|
|
||||||
{%- assign author = page.author | default: page.authors[0] | default: site:author -%}
|
{% if site.url %}
|
||||||
{%- assign author = site.data.authors[author] | default: author -%}
|
{% assign canonical_url = page.url | replace: "index.html", "" | prepend: site.url %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{%- if author.twitter -%}
|
<title>{{ seo_title | default: site.title }}{% if paginator %}{% unless paginator.page == 1 %} {{ site.title_separator }} {{ site.data.ui-text[site.locale].page | default: "Page" }} {{ paginator.page }}{% endunless %}{% endif %}</title>
|
||||||
{%- assign author_twitter = author.twitter | replace: "@", "" -%}
|
|
||||||
{%- endif -%}
|
|
||||||
|
|
||||||
{%- assign page_large_image = page.header.og_image | default: page.header.overlay_image | default: page.header.image -%}
|
{% assign seo_description = page.description | default: page.excerpt | default: site.description %}
|
||||||
{%- unless page_large_image contains '://' -%}
|
{% if seo_description %}
|
||||||
{%- assign page_large_image = page_large_image | absolute_url -%}
|
{% assign seo_description = seo_description | markdownify | strip_html | strip_newlines | escape_once %}
|
||||||
{%- endunless -%}
|
{% endif %}
|
||||||
{%- assign page_large_image = page_large_image | escape -%}
|
|
||||||
|
|
||||||
{%- assign page_teaser_image = page.header.teaser | default: site.og_image -%}
|
|
||||||
{%- unless page_teaser_image contains '://' -%}
|
|
||||||
{%- assign page_teaser_image = page_teaser_image | absolute_url -%}
|
|
||||||
{%- endunless -%}
|
|
||||||
{%- assign page_teaser_image = page_teaser_image | escape -%}
|
|
||||||
|
|
||||||
{%- assign site_og_image = site.og_image -%}
|
|
||||||
{%- unless site_og_image contains '://' -%}
|
|
||||||
{%- assign site_og_image = site_og_image | absolute_url -%}
|
|
||||||
{%- endunless -%}
|
|
||||||
{%- assign site_og_image = site_og_image | escape -%}
|
|
||||||
|
|
||||||
{%- if page.date -%}
|
|
||||||
{%- assign og_type = "article" -%}
|
|
||||||
{%- else -%}
|
|
||||||
{%- assign og_type = "website" -%}
|
|
||||||
{%- endif -%}
|
|
||||||
|
|
||||||
<title>{{ seo_title | default: site.title }}{% if paginator %}{% unless paginator.page == 1 %} {{ title_separator }} {{ site.data.ui-text[site.locale].page | default: "Page" }} {{ paginator.page }}{% endunless %}{% endif %}</title>
|
|
||||||
<meta name="description" content="{{ seo_description }}">
|
<meta name="description" content="{{ seo_description }}">
|
||||||
|
|
||||||
{% if author.name %}
|
{% assign seo_author = page.author | default: page.author[0] | default: site.author.name %}
|
||||||
<meta name="author" content="{{ author.name | default: author }}">
|
{% if seo_author %}
|
||||||
|
{% if seo_author.twitter %}
|
||||||
|
{% assign seo_author_twitter = seo_author.twitter %}
|
||||||
|
{% else %}
|
||||||
|
{% if site.data.authors and site.data.authors[seo_author] %}
|
||||||
|
{% assign seo_author_twitter = site.data.authors[seo_author].twitter %}
|
||||||
|
{% else %}
|
||||||
|
{% assign seo_author_twitter = seo_author %}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
{% assign seo_author_twitter = seo_author_twitter | replace: "@", "" %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<meta property="og:type" content="{{ og_type }}">
|
<meta name="author" content="{{ seo_author }}">
|
||||||
|
|
||||||
<meta property="og:locale" content="{{ site.locale | replace: "-", "_" | default: "en_US" }}">
|
<meta property="og:locale" content="{{ site.locale | replace: "-", "_" | default: "en_US" }}">
|
||||||
<meta property="og:site_name" content="{{ site.title }}">
|
<meta property="og:site_name" content="{{ site.title }}">
|
||||||
<meta property="og:title" content="{{ page.title | default: site.title | markdownify | strip_html | strip_newlines | escape_once }}">
|
<meta property="og:title" content="{{ page.title | default: site.title | markdownify | strip_html | strip_newlines | escape_once }}">
|
||||||
<meta property="og:url" content="{{ canonical_url }}">
|
|
||||||
|
{% if seo_url %}
|
||||||
|
<link rel="canonical" href="{{ page.url | prepend: seo_url | replace: "/index.html", "/" }}">
|
||||||
|
<meta property="og:url" content="{{ page.url | prepend: seo_url | replace: "/index.html", "/" }}">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% if page.excerpt %}
|
{% if page.excerpt %}
|
||||||
<meta property="og:description" content="{{ seo_description }}">
|
<meta property="og:description" content="{{ seo_description }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if page_large_image %}
|
|
||||||
<meta property="og:image" content="{{ page_large_image }}">
|
|
||||||
{% elsif page_teaser_image %}
|
|
||||||
<meta property="og:image" content="{{ page_teaser_image }}">
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if site.twitter.username %}
|
{% if site.twitter.username %}
|
||||||
<meta name="twitter:site" content="@{{ site.twitter.username | replace: "@", "" }}">
|
<meta name="twitter:site" content="@{{ site.twitter.username | replace: "@", "" }}">
|
||||||
<meta name="twitter:title" content="{{ page.title | default: site.title | markdownify | strip_html | strip_newlines | escape_once }}">
|
<meta name="twitter:title" content="{{ page.title | default: site.title | markdownify | strip_html | strip_newlines | escape_once }}">
|
||||||
<meta name="twitter:description" content="{{ seo_description }}">
|
<meta name="twitter:description" content="{{ seo_description }}">
|
||||||
<meta name="twitter:url" content="{{ canonical_url }}">
|
<meta name="twitter:url" content="{{ canonical_url }}">
|
||||||
|
|
||||||
{% if page_large_image %}
|
{% if page.header.image %}
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
<meta name="twitter:image" content="{{ page_large_image }}">
|
<meta name="twitter:image" content="{% if page.header.image contains "://" %}{{ page.header.image }}{% else %}{{ page.header.image | absolute_url }}{% endif %}">
|
||||||
{% else %}
|
{% else %}
|
||||||
<meta name="twitter:card" content="summary">
|
<meta name="twitter:card" content="summary">
|
||||||
{% if page_teaser_image %}
|
{% if page.header.teaser %}
|
||||||
<meta name="twitter:image" content="{{ page_teaser_image }}">
|
<meta name="twitter:image" content="{% if page.header.teaser contains "://" %}{{ page.header.teaser }}{% else %}{{ page.header.teaser | absolute_url }}{% endif %}">
|
||||||
|
{% elsif site.og_image %}
|
||||||
|
<meta name="twitter:image" content="{{ site.og_image | absolute_url }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if author_twitter %}
|
{% if seo_author_twitter %}
|
||||||
<meta name="twitter:creator" content="@{{ author_twitter }}">
|
<meta name="twitter:creator" content="@{{ seo_author_twitter }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if page.date %}
|
|
||||||
<meta property="article:published_time" content="{{ page.date | date_to_xmlschema }}">
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if og_type == "article" and page.last_modified_at %}
|
|
||||||
<meta property="article:modified_time" content="{{ page.last_modified_at | date_to_xmlschema }}">
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if site.facebook %}
|
{% if site.facebook %}
|
||||||
{% if site.facebook.publisher %}
|
{% if site.facebook.publisher %}
|
||||||
<meta property="article:publisher" content="{{ site.facebook.publisher }}">
|
<meta property="article:publisher" content="{{ site.facebook.publisher }}">
|
||||||
|
@ -118,22 +87,35 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<link rel="canonical" href="{{ canonical_url }}">
|
{% if page.header.image %}
|
||||||
|
<meta property="og:image" content="{% if page.header.image contains "://" %}{{ page.header.image }}{% else %}{{ page.header.image | absolute_url }}{% endif %}">
|
||||||
|
{% elsif page.header.overlay_image %}
|
||||||
|
<meta property="og:image" content="{% if page.header.overlay_image contains "://" %}{{ page.header.overlay_image }}{% else %}{{ page.header.overlay_image | absolute_url }}{% endif %}">
|
||||||
|
{% elsif page.header.teaser %}
|
||||||
|
<meta property="og:image" content="{% if page.header.teaser contains "://" %}{{ page.header.teaser }}{% else %}{{ page.header.teaser | absolute_url }}{% endif %}">
|
||||||
|
{% elsif site.og_image %}
|
||||||
|
<meta property="og:image" content="{% if site.og_image contains "://" %}{{ site.og_image }}{% else %}{{ site.og_image | absolute_url }}{% endif %}">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if page.date %}
|
||||||
|
<meta property="og:type" content="article">
|
||||||
|
<meta property="article:published_time" content="{{ page.date | date_to_xmlschema }}">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% if paginator.previous_page %}
|
{% if paginator.previous_page %}
|
||||||
<link rel="prev" href="{{ paginator.previous_page_path | absolute_url }}">
|
<link rel="prev" href="{{ paginator.previous_page_path | prepend: seo_url }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if paginator.next_page %}
|
{% if paginator.next_page %}
|
||||||
<link rel="next" href="{{ paginator.next_page_path | absolute_url }}">
|
<link rel="next" href="{{ paginator.next_page_path | prepend: seo_url }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if site.og_image %}
|
{% if site.og_image %}
|
||||||
<script type="application/ld+json">
|
<script type="application/ld+json">
|
||||||
{
|
{
|
||||||
"@context": "https://schema.org",
|
"@context": "http://schema.org",
|
||||||
"@type": "Organization",
|
"@type": "Organization",
|
||||||
"url": {{ seo_url | jsonify }},
|
"url": {{ seo_url | jsonify }},
|
||||||
"logo": {{ site_og_image | jsonify }}
|
"logo": {{ site.og_image | absolute_url | jsonify }}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -141,11 +123,11 @@
|
||||||
{% if site.social %}
|
{% if site.social %}
|
||||||
<script type="application/ld+json">
|
<script type="application/ld+json">
|
||||||
{
|
{
|
||||||
"@context": "https://schema.org",
|
"@context" : "http://schema.org",
|
||||||
"@type": "{% if site.social.type %}{{ site.social.type }}{% else %}Person{% endif %}",
|
"@type" : "{% if site.social.type %}{{ site.social.type }}{% else %}Person{% endif %}",
|
||||||
"name": {{ site.social.name | default: site.name | jsonify }},
|
"name" : "{{ site.social.name | default: site.name }}",
|
||||||
"url": {{ seo_url | jsonify }},
|
"url" : {{ seo_url | jsonify }},
|
||||||
"sameAs": {{ site.social.links | jsonify }}
|
"sameAs" : {{ site.social.links | jsonify }}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -162,7 +144,4 @@
|
||||||
{% if site.yandex_site_verification %}
|
{% if site.yandex_site_verification %}
|
||||||
<meta name="yandex-verification" content="{{ site.yandex_site_verification }}">
|
<meta name="yandex-verification" content="{{ site.yandex_site_verification }}">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if site.naver_site_verification %}
|
<!-- end SEO -->
|
||||||
<meta name="naver-site-verification" content="{{ site.naver_site_verification }}">
|
|
||||||
{% endif %}
|
|
||||||
<!-- end _includes/seo.html -->
|
|
||||||
|
|
29
_includes/sidebar.html
Normal file → Executable file
29
_includes/sidebar.html
Normal file → Executable file
|
@ -1,24 +1,7 @@
|
||||||
{% if page.author_profile or layout.author_profile or page.sidebar %}
|
{% if page.sidebar %}
|
||||||
<div class="sidebar sticky">
|
|
||||||
{% if page.author_profile or layout.author_profile %}{% include author-profile.html %}{% endif %}
|
<div class="sidebar sticky" style="display: none;">
|
||||||
{% if page.sidebar %}
|
{% include nav_list %}
|
||||||
{% for s in page.sidebar %}
|
</div>
|
||||||
{% if s.image %}
|
|
||||||
<img src=
|
|
||||||
{% if s.image contains "://" %}
|
|
||||||
"{{ s.image }}"
|
|
||||||
{% else %}
|
|
||||||
"{{ s.image | relative_url }}"
|
|
||||||
{% endif %}
|
|
||||||
alt="{% if s.image_alt %}{{ s.image_alt }}{% endif %}">
|
|
||||||
{% endif %}
|
|
||||||
{% if s.title %}<h3>{{ s.title }}</h3>{% endif %}
|
|
||||||
{% if s.text %}{{ s.text | markdownify }}{% endif %}
|
|
||||||
{% if s.nav %}{% include nav_list nav=s.nav %}{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
{% if page.sidebar.nav %}
|
|
||||||
{% include nav_list nav=page.sidebar.nav %}
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
{% endif %}
|
|
@ -1,8 +0,0 @@
|
||||||
<nav class="skip-links">
|
|
||||||
<h2 class="screen-reader-text">{{ site.data.ui-text[site.locale].skip_links | default: 'Skip links' }}</h2>
|
|
||||||
<ul>
|
|
||||||
<li><a href="#site-nav" class="screen-reader-shortcut">{{ site.data.ui-text[site.locale].skip_primary_nav | default: 'Skip to primary navigation' }}</a></li>
|
|
||||||
<li><a href="#main" class="screen-reader-shortcut">{{ site.data.ui-text[site.locale].skip_content | default: 'Skip to content' }}</a></li>
|
|
||||||
<li><a href="#footer" class="screen-reader-shortcut">{{ site.data.ui-text[site.locale].skip_footer | default: 'Skip to footer' }}</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
8
_includes/social-share.html
Normal file → Executable file
8
_includes/social-share.html
Normal file → Executable file
|
@ -3,9 +3,11 @@
|
||||||
<h4 class="page__share-title">{{ site.data.ui-text[site.locale].share_on_label | default: "Share on" }}</h4>
|
<h4 class="page__share-title">{{ site.data.ui-text[site.locale].share_on_label | default: "Share on" }}</h4>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<a href="https://twitter.com/intent/tweet?{% if site.twitter.username %}via={{ site.twitter.username | url_encode }}&{% endif %}text={{ page.title | url_encode }}%20{{ page.url | absolute_url | url_encode }}" class="btn btn--twitter" onclick="window.open(this.href, 'window', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;" title="{{ site.data.ui-text[site.locale].share_on_label | default: 'Share on' }} Twitter"><i class="fab fa-fw fa-twitter" aria-hidden="true"></i><span> Twitter</span></a>
|
<a href="https://twitter.com/intent/tweet?{% if site.twitter.username %}via={{ site.twitter.username | url_encode }}&{% endif %}text={{ page.title | url_encode }}%20{{ page.url | absolute_url | url_encode }}" class="btn btn--twitter" title="{{ site.data.ui-text[site.locale].share_on_label | default: 'Share on' }} Twitter"><i class="fa fa-fw fa-twitter" aria-hidden="true"></i><span> Twitter</span></a>
|
||||||
|
|
||||||
<a href="https://www.facebook.com/sharer/sharer.php?u={{ page.url | absolute_url | url_encode }}" class="btn btn--facebook" onclick="window.open(this.href, 'window', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;" title="{{ site.data.ui-text[site.locale].share_on_label | default: 'Share on' }} Facebook"><i class="fab fa-fw fa-facebook" aria-hidden="true"></i><span> Facebook</span></a>
|
<a href="https://www.facebook.com/sharer/sharer.php?u={{ page.url | absolute_url | url_encode }}" class="btn btn--facebook" title="{{ site.data.ui-text[site.locale].share_on_label | default: 'Share on' }} Facebook"><i class="fa fa-fw fa-facebook" aria-hidden="true"></i><span> Facebook</span></a>
|
||||||
|
|
||||||
<a href="https://www.linkedin.com/shareArticle?mini=true&url={{ page.url | absolute_url | url_encode }}" class="btn btn--linkedin" onclick="window.open(this.href, 'window', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;" title="{{ site.data.ui-text[site.locale].share_on_label | default: 'Share on' }} LinkedIn"><i class="fab fa-fw fa-linkedin" aria-hidden="true"></i><span> LinkedIn</span></a>
|
<a href="https://plus.google.com/share?url={{ page.url | absolute_url | url_encode }}" class="btn btn--google-plus" title="{{ site.data.ui-text[site.locale].share_on_label | default: 'Share on' }} Google Plus"><i class="fa fa-fw fa-google-plus" aria-hidden="true"></i><span> Google+</span></a>
|
||||||
|
|
||||||
|
<a href="https://www.linkedin.com/shareArticle?mini=true&url={{ page.url | absolute_url | url_encode }}" class="btn btn--linkedin" title="{{ site.data.ui-text[site.locale].share_on_label | default: 'Share on' }} LinkedIn"><i class="fa fa-fw fa-linkedin" aria-hidden="true"></i><span> LinkedIn</span></a>
|
||||||
</section>
|
</section>
|
||||||
|
|
10
_includes/tag-list.html
Normal file → Executable file
10
_includes/tag-list.html
Normal file → Executable file
|
@ -10,17 +10,17 @@
|
||||||
<!-- Sort alphabetically regardless of case e.g. a B c d E -->
|
<!-- Sort alphabetically regardless of case e.g. a B c d E -->
|
||||||
<!-- modified from http://www.codeofclimber.ru/2015/sorting-site-tags-in-jekyll/ -->
|
<!-- modified from http://www.codeofclimber.ru/2015/sorting-site-tags-in-jekyll/ -->
|
||||||
{% endcomment %}
|
{% endcomment %}
|
||||||
{% capture page_tags %}{% for tag in page.tags %}{{ tag | downcase }}|{{ tag }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
|
{% capture page_tags %}{% for tag in page.tags %}{{ tag | downcase }}#{{ tag }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %}
|
||||||
{% assign tag_hashes = page_tags | split: ',' | sort %}
|
{% assign tag_hashes = page_tags | split: ',' | sort %}
|
||||||
|
|
||||||
<p class="page__taxonomy">
|
<p class="page__taxonomy">
|
||||||
<strong><i class="fas fa-fw fa-tags" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].tags_label | default: "Tags:" }} </strong>
|
<strong><i class="fa fa-fw fa-tags" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].tags_label | default: "Tags:" }} </strong>
|
||||||
<span itemprop="keywords">
|
<span itemprop="keywords">
|
||||||
{% for hash in tag_hashes %}
|
{% for hash in tag_hashes %}
|
||||||
{% assign keyValue = hash | split: '|' %}
|
{% assign keyValue = hash | split: '#' %}
|
||||||
{% capture tag_word %}{{ keyValue[1] | strip_newlines }}{% endcapture %}
|
{% capture tag_word %}{{ keyValue[1] | strip_newlines }}{% endcapture %}
|
||||||
<a href="{{ tag_word | slugify | prepend: path_type | prepend: site.tag_archive.path | relative_url }}" class="page__taxonomy-item" rel="tag">{{ tag_word }}</a>{% unless forloop.last %}<span class="sep">, </span>{% endunless %}
|
<a href="{{ tag_word | slugify | prepend: path_type | prepend: site.tag_archive.path | absolute_url }}" class="page__taxonomy-item" rel="tag">{{ tag_word }}</a>{% unless forloop.last %}<span class="sep">, </span>{% endunless %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
2
_includes/toc
Normal file → Executable file
2
_includes/toc
Normal file → Executable file
|
@ -1,6 +1,6 @@
|
||||||
<aside class="sidebar__right">
|
<aside class="sidebar__right">
|
||||||
<nav class="toc" markdown="1">
|
<nav class="toc" markdown="1">
|
||||||
<header><h4 class="nav__title"><i class="fas fa-{{ include.icon | default: 'file-alt' }}"></i> {{ include.title | default: site.data.ui-text[site.locale].toc_label }}</h4></header>
|
<header><h4 class="nav__title"><i class="fa fa-{{ include.icon | default: 'file-text' }}"></i> {{ include.title | default: site.data.ui-text[site.locale].toc_label }}</h4></header>
|
||||||
* Auto generated table of contents
|
* Auto generated table of contents
|
||||||
{:toc .toc__menu}
|
{:toc .toc__menu}
|
||||||
</nav>
|
</nav>
|
||||||
|
|
|
@ -1,85 +0,0 @@
|
||||||
{% capture tocWorkspace %}
|
|
||||||
{% comment %}
|
|
||||||
Version 1.0.5
|
|
||||||
https://github.com/allejo/jekyll-toc
|
|
||||||
|
|
||||||
"...like all things liquid - where there's a will, and ~36 hours to spare, there's usually a/some way" ~jaybe
|
|
||||||
|
|
||||||
Usage:
|
|
||||||
{% include toc.html html=content sanitize=true class="inline_toc" id="my_toc" h_min=2 h_max=3 %}
|
|
||||||
|
|
||||||
Parameters:
|
|
||||||
* html (string) - the HTML of compiled markdown generated by kramdown in Jekyll
|
|
||||||
|
|
||||||
Optional Parameters:
|
|
||||||
* sanitize (bool) : false - when set to true, the headers will be stripped of any HTML in the TOC
|
|
||||||
* class (string) : '' - a CSS class assigned to the TOC
|
|
||||||
* id (string) : '' - an ID to assigned to the TOC
|
|
||||||
* h_min (int) : 1 - the minimum TOC header level to use; any header lower than this value will be ignored
|
|
||||||
* h_max (int) : 6 - the maximum TOC header level to use; any header greater than this value will be ignored
|
|
||||||
* ordered (bool) : false - when set to true, an ordered list will be outputted instead of an unordered list
|
|
||||||
* item_class (string) : '' - add custom class for each list item; has support for '%level%' placeholder, which is the current heading level
|
|
||||||
* baseurl (string) : '' - add a base url to the TOC links for when your TOC is on another page than the actual content
|
|
||||||
|
|
||||||
Output:
|
|
||||||
An ordered or unordered list representing the table of contents of a markdown block. This snippet will only generate the table of contents and will NOT output the markdown given to it
|
|
||||||
{% endcomment %}
|
|
||||||
|
|
||||||
{% capture my_toc %}{% endcapture %}
|
|
||||||
{% assign orderedList = include.ordered | default: false %}
|
|
||||||
{% assign minHeader = include.h_min | default: 1 %}
|
|
||||||
{% assign maxHeader = include.h_max | default: 6 %}
|
|
||||||
{% assign nodes = include.html | split: '<h' %}
|
|
||||||
{% assign firstHeader = true %}
|
|
||||||
|
|
||||||
{% capture listModifier %}{% if orderedList %}1.{% else %}-{% endif %}{% endcapture %}
|
|
||||||
|
|
||||||
{% for node in nodes %}
|
|
||||||
{% if node == "" %}
|
|
||||||
{% continue %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% assign headerLevel = node | replace: '"', '' | slice: 0, 1 | times: 1 %}
|
|
||||||
|
|
||||||
{% if headerLevel < minHeader or headerLevel > maxHeader %}
|
|
||||||
{% continue %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if firstHeader %}
|
|
||||||
{% assign firstHeader = false %}
|
|
||||||
{% assign minHeader = headerLevel %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% assign indentAmount = headerLevel | minus: minHeader | add: 1 %}
|
|
||||||
{% assign _workspace = node | split: '</h' %}
|
|
||||||
|
|
||||||
{% assign _idWorkspace = _workspace[0] | split: 'id="' %}
|
|
||||||
{% assign _idWorkspace = _idWorkspace[1] | split: '"' %}
|
|
||||||
{% assign html_id = _idWorkspace[0] %}
|
|
||||||
|
|
||||||
{% capture _hAttrToStrip %}{{ _workspace[0] | split: '>' | first }}>{% endcapture %}
|
|
||||||
{% assign header = _workspace[0] | replace: _hAttrToStrip, '' %}
|
|
||||||
|
|
||||||
{% assign space = '' %}
|
|
||||||
{% for i in (1..indentAmount) %}
|
|
||||||
{% assign space = space | prepend: ' ' %}
|
|
||||||
{% endfor %}
|
|
||||||
|
|
||||||
{% unless include.item_class == blank %}
|
|
||||||
{% capture listItemClass %}{:.{{ include.item_class | replace: '%level%', headerLevel }}}{% endcapture %}
|
|
||||||
{% endunless %}
|
|
||||||
|
|
||||||
{% capture my_toc %}{{ my_toc }}
|
|
||||||
{{ space }}{{ listModifier }} {{ listItemClass }} [{% if include.sanitize %}{{ header | strip_html }}{% else %}{{ header }}{% endif %}]({% if include.baseurl %}{{ include.baseurl }}{% endif %}#{{ html_id }}){% endcapture %}
|
|
||||||
{% endfor %}
|
|
||||||
|
|
||||||
{% if include.class %}
|
|
||||||
{% capture my_toc %}{:.{{ include.class }}}
|
|
||||||
{{ my_toc | lstrip }}{% endcapture %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.id %}
|
|
||||||
{% capture my_toc %}{: #{{ include.id }}}
|
|
||||||
{{ my_toc | lstrip }}{% endcapture %}
|
|
||||||
{% endif %}
|
|
||||||
{% endcapture %}{% assign tocWorkspace = '' %}{{ my_toc | markdownify | strip }}
|
|
6
_includes/video
Normal file → Executable file
6
_includes/video
Normal file → Executable file
|
@ -4,10 +4,8 @@
|
||||||
<!-- Courtesy of embedresponsively.com //-->
|
<!-- Courtesy of embedresponsively.com //-->
|
||||||
<div class="responsive-video-container">
|
<div class="responsive-video-container">
|
||||||
{% if video_provider == "vimeo" %}
|
{% if video_provider == "vimeo" %}
|
||||||
<iframe src="https://player.vimeo.com/video/{{ video_id }}?dnt=true" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
|
<iframe src="https://player.vimeo.com/video/{{ video_id }}" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
|
||||||
{% elsif video_provider == "youtube" %}
|
{% elsif video_provider == "youtube" %}
|
||||||
<iframe src="https://www.youtube-nocookie.com/embed/{{ video_id }}" frameborder="0" allowfullscreen></iframe>
|
<iframe src="https://www.youtube.com/embed/{{ video_id }}" frameborder="0" allowfullscreen></iframe>
|
||||||
{% elsif video_provider == "google-drive" %}
|
|
||||||
<iframe src="https://drive.google.com/file/d/{{ video_id }}/preview" frameborder="0" allowfullscreen></iframe>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
2
_layouts/archive-taxonomy.html
Normal file → Executable file
2
_layouts/archive-taxonomy.html
Normal file → Executable file
|
@ -12,4 +12,4 @@ author_profile: false
|
||||||
{% include archive-single.html %}
|
{% include archive-single.html %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
4
_layouts/archive.html
Normal file → Executable file
4
_layouts/archive.html
Normal file → Executable file
|
@ -19,8 +19,8 @@ layout: default
|
||||||
|
|
||||||
<div class="archive">
|
<div class="archive">
|
||||||
{% unless page.header.overlay_color or page.header.overlay_image %}
|
{% unless page.header.overlay_color or page.header.overlay_image %}
|
||||||
<h1 id="page-title" class="page__title">{{ page.title }}</h1>
|
<h1 class="page__title">{{ page.title }}</h1>
|
||||||
{% endunless %}
|
{% endunless %}
|
||||||
{{ content }}
|
{{ content }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,42 +0,0 @@
|
||||||
---
|
|
||||||
layout: archive
|
|
||||||
---
|
|
||||||
|
|
||||||
{{ content }}
|
|
||||||
|
|
||||||
{% assign categories_max = 0 %}
|
|
||||||
{% for category in site.categories %}
|
|
||||||
{% if category[1].size > categories_max %}
|
|
||||||
{% assign categories_max = category[1].size %}
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
|
|
||||||
<ul class="taxonomy__index">
|
|
||||||
{% for i in (1..categories_max) reversed %}
|
|
||||||
{% for category in site.categories %}
|
|
||||||
{% if category[1].size == i %}
|
|
||||||
<li>
|
|
||||||
<a href="#{{ category[0] | slugify }}">
|
|
||||||
<strong>{{ category[0] }}</strong> <span class="taxonomy__count">{{ i }}</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
{% for i in (1..categories_max) reversed %}
|
|
||||||
{% for category in site.categories %}
|
|
||||||
{% if category[1].size == i %}
|
|
||||||
<section id="{{ category[0] | slugify | downcase }}" class="taxonomy__section">
|
|
||||||
<h2 class="archive__subtitle">{{ category[0] }}</h2>
|
|
||||||
<div class="entries-{{ page.entries_layout | default: 'list' }}">
|
|
||||||
{% for post in category.last %}
|
|
||||||
{% include archive-single.html type=page.entries_layout %}
|
|
||||||
{% endfor %}
|
|
||||||
</div>
|
|
||||||
<a href="#page-title" class="back-to-top">{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑</a>
|
|
||||||
</section>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
{% endfor %}
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
layout: archive
|
|
||||||
---
|
|
||||||
|
|
||||||
{{ content }}
|
|
||||||
|
|
||||||
<div class="entries-{{ page.entries_layout }}">
|
|
||||||
{% include posts-category.html taxonomy=page.taxonomy type=page.entries_layout %}
|
|
||||||
</div>
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
layout: archive
|
|
||||||
---
|
|
||||||
|
|
||||||
{{ content }}
|
|
||||||
|
|
||||||
<div class="entries-{{ page.entries_layout }}">
|
|
||||||
{% include documents-collection.html collection=page.collection sort_by=page.sort_by sort_order=page.sort_order type=page.entries_layout %}
|
|
||||||
</div>
|
|
4
_layouts/compress.html
Normal file → Executable file
4
_layouts/compress.html
Normal file → Executable file
|
@ -1,10 +1,10 @@
|
||||||
---
|
---
|
||||||
# Jekyll layout that compresses HTML
|
# Jekyll layout that compresses HTML
|
||||||
# v3.1.0
|
# v3.0.2
|
||||||
# http://jch.penibelst.de/
|
# http://jch.penibelst.de/
|
||||||
# © 2014–2015 Anatol Broder
|
# © 2014–2015 Anatol Broder
|
||||||
# MIT License
|
# MIT License
|
||||||
---
|
---
|
||||||
|
|
||||||
{% capture _LINE_FEED %}
|
{% capture _LINE_FEED %}
|
||||||
{% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment or site.compress_html.ignore.envs == "all" %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}</{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "<!-- -->" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "<pre" %}{% assign _content = "" %}{% for _pre_before in _pre_befores %}{% assign _pres = _pre_before | split: "</pre>" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "</pre>" %}<pre{{ _pres.first }}</pre>{% endif %}{% unless _pre_before contains "</pre>" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " <e;<e; </e>;</e>;</e> ;</e>" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} <table id="compress_html_profile_{{ site.time | date: "%Y%m%d" }}" class="compress_html_profile"> <thead> <tr> <td>Step <td>Bytes <tbody> <tr> <td>raw <td>{{ content | size }}{% if _profile_endings %} <tr> <td>endings <td>{{ _profile_endings }}{% endif %}{% if _profile_startings %} <tr> <td>startings <td>{{ _profile_startings }}{% endif %}{% if _profile_comments %} <tr> <td>comments <td>{{ _profile_comments }}{% endif %}{% if _profile_collapse %} <tr> <td>collapse <td>{{ _profile_collapse }}{% endif %}{% if _profile_clippings %} <tr> <td>clippings <td>{{ _profile_clippings }}{% endif %} </table>{% endif %}{% endif %}
|
{% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}</{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "<!-- -->" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "<pre" %}{% assign _content = "" %}{% for _pre_before in _pre_befores %}{% assign _pres = _pre_before | split: "</pre>" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains "</pre>" %}<pre{{ _pres.first }}</pre>{% endif %}{% unless _pre_before contains "</pre>" and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " <e;<e; </e>;</e>;</e> ;</e>" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} <table id="compress_html_profile_{{ site.time | date: "%Y%m%d" }}" class="compress_html_profile"> <thead> <tr> <td>Step <td>Bytes <tbody> <tr> <td>raw <td>{{ content | size }}{% if _profile_endings %} <tr> <td>endings <td>{{ _profile_endings }}{% endif %}{% if _profile_startings %} <tr> <td>startings <td>{{ _profile_startings }}{% endif %}{% if _profile_comments %} <tr> <td>comments <td>{{ _profile_comments }}{% endif %}{% if _profile_collapse %} <tr> <td>collapse <td>{{ _profile_collapse }}{% endif %}{% if _profile_clippings %} <tr> <td>clippings <td>{{ _profile_clippings }}{% endif %} </table>{% endif %}{% endif %}
|
||||||
|
|
24
_layouts/default.html
Normal file → Executable file
24
_layouts/default.html
Normal file → Executable file
|
@ -3,10 +3,10 @@
|
||||||
|
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<!--
|
<!--
|
||||||
Minimal Mistakes Jekyll Theme 4.16.4 by Michael Rose
|
Minimal Mistakes Jekyll Theme 4.6.0 by Michael Rose
|
||||||
Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
|
Copyright 2017 Michael Rose - mademistakes.com | @mmistakes
|
||||||
Free for personal and commercial use under the MIT license
|
Free for personal and commercial use under the MIT license
|
||||||
https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE
|
https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE.txt
|
||||||
-->
|
-->
|
||||||
<html lang="{{ site.locale | slice: 0,2 | default: "en" }}" class="no-js">
|
<html lang="{{ site.locale | slice: 0,2 | default: "en" }}" class="no-js">
|
||||||
<head>
|
<head>
|
||||||
|
@ -15,24 +15,16 @@
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="layout--{{ page.layout | default: layout.layout }}{% if page.classes or layout.classes %}{{ page.classes | default: layout.classes | join: ' ' | prepend: ' ' }}{% endif %}">
|
<body class="layout--{{ page.layout | default: layout.layout }}{% if page.classes or layout.classes %}{{ page.classes | default: layout.classes | join: ' ' | prepend: ' ' }}{% endif %}">
|
||||||
{% include_cached skip-links.html %}
|
|
||||||
{% include_cached browser-upgrade.html %}
|
|
||||||
{% include_cached masthead.html %}
|
|
||||||
|
|
||||||
<div class="initial-content">
|
{% include browser-upgrade.html %}
|
||||||
{{ content }}
|
{% include masthead.html %}
|
||||||
</div>
|
|
||||||
|
|
||||||
{% if site.search == true %}
|
{{ content }}
|
||||||
<div class="search-content">
|
|
||||||
{% include_cached search/search_form.html %}
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
<div id="footer" class="page__footer">
|
<div class="page__footer">
|
||||||
<footer>
|
<footer>
|
||||||
{% include footer/custom.html %}
|
{% include footer/custom.html %}
|
||||||
{% include_cached footer.html %}
|
{% include footer.html %}
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
2
_layouts/home.html
Normal file → Executable file
2
_layouts/home.html
Normal file → Executable file
|
@ -2,8 +2,6 @@
|
||||||
layout: archive
|
layout: archive
|
||||||
---
|
---
|
||||||
|
|
||||||
{{ content }}
|
|
||||||
|
|
||||||
<h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}</h3>
|
<h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}</h3>
|
||||||
|
|
||||||
{% for post in paginator.posts %}
|
{% for post in paginator.posts %}
|
||||||
|
|
|
@ -1,29 +0,0 @@
|
||||||
---
|
|
||||||
layout: archive
|
|
||||||
---
|
|
||||||
|
|
||||||
{{ content }}
|
|
||||||
|
|
||||||
<ul class="taxonomy__index">
|
|
||||||
{% assign postsInYear = site.posts | group_by_exp: 'post', 'post.date | date: "%Y"' %}
|
|
||||||
{% for year in postsInYear %}
|
|
||||||
<li>
|
|
||||||
<a href="#{{ year.name }}">
|
|
||||||
<strong>{{ year.name }}</strong> <span class="taxonomy__count">{{ year.items | size }}</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
{% assign postsByYear = site.posts | group_by_exp: 'post', 'post.date | date: "%Y"' %}
|
|
||||||
{% for year in postsByYear %}
|
|
||||||
<section id="{{ year.name }}" class="taxonomy__section">
|
|
||||||
<h2 class="archive__subtitle">{{ year.name }}</h2>
|
|
||||||
<div class="entries-{{ page.entries_layout | default: 'list' }}">
|
|
||||||
{% for post in year.items %}
|
|
||||||
{% include archive-single.html type=page.entries_layout %}
|
|
||||||
{% endfor %}
|
|
||||||
</div>
|
|
||||||
<a href="#page-title" class="back-to-top">{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑</a>
|
|
||||||
</section>
|
|
||||||
{% endfor %}
|
|
|
@ -1,42 +0,0 @@
|
||||||
---
|
|
||||||
layout: default
|
|
||||||
---
|
|
||||||
|
|
||||||
{% if page.header.overlay_color or page.header.overlay_image or page.header.image %}
|
|
||||||
{% include page__hero.html %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if page.url != "/" and site.breadcrumbs %}
|
|
||||||
{% unless paginator %}
|
|
||||||
{% include breadcrumbs.html %}
|
|
||||||
{% endunless %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
<div id="main" role="main">
|
|
||||||
{% include sidebar.html %}
|
|
||||||
|
|
||||||
<div class="archive">
|
|
||||||
{% unless page.header.overlay_color or page.header.overlay_image %}
|
|
||||||
<h1 id="page-title" class="page__title">{{ page.title }}</h1>
|
|
||||||
{% endunless %}
|
|
||||||
|
|
||||||
{{ content }}
|
|
||||||
|
|
||||||
{%- assign search_provider = site.search_provider | default: "lunr" -%}
|
|
||||||
{%- case search_provider -%}
|
|
||||||
{%- when "lunr" -%}
|
|
||||||
<input type="text" id="search" class="search-input" tabindex="-1" placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" />
|
|
||||||
<div id="results" class="results"></div>
|
|
||||||
{%- when "google" -%}
|
|
||||||
<form onsubmit="return googleCustomSearchExecute();" id="cse-search-box-form-id">
|
|
||||||
<input type="text" id="cse-search-input-box-id" class="search-input" tabindex="-1" placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" />
|
|
||||||
</form>
|
|
||||||
<div id="results" class="results">
|
|
||||||
<gcse:searchresults-only></gcse:searchresults-only>
|
|
||||||
</div>
|
|
||||||
{%- when "algolia" -%}
|
|
||||||
<div class="search-searchbar"></div>
|
|
||||||
<div class="search-hits"></div>
|
|
||||||
{%- endcase -%}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
180
_layouts/single.html
Normal file → Executable file
180
_layouts/single.html
Normal file → Executable file
|
@ -1,95 +1,85 @@
|
||||||
---
|
---
|
||||||
layout: default
|
layout: default
|
||||||
---
|
---
|
||||||
|
|
||||||
{% if page.header.overlay_color or page.header.overlay_image or page.header.image %}
|
{% if page.header.overlay_color or page.header.overlay_image or page.header.image %}
|
||||||
{% include page__hero.html %}
|
{% include page__hero.html %}
|
||||||
{% elsif page.header.video.id and page.header.video.provider %}
|
{% elsif page.header.video.id and page.header.video.provider %}
|
||||||
{% include page__hero_video.html %}
|
{% include page__hero_video.html %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if page.url != "/" and site.breadcrumbs %}
|
{% if page.url != "/" and site.breadcrumbs %}
|
||||||
{% unless paginator %}
|
{% unless paginator %}
|
||||||
{% include breadcrumbs.html %}
|
{% include breadcrumbs.html %}
|
||||||
{% endunless %}
|
{% endunless %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div id="main" role="main">
|
<div id="main" role="main">
|
||||||
{% include sidebar.html %}
|
{% include sidebar.html %}
|
||||||
|
|
||||||
<article class="page" itemscope itemtype="https://schema.org/CreativeWork">
|
<article class="page" itemscope itemtype="http://schema.org/CreativeWork">
|
||||||
{% if page.title %}<meta itemprop="headline" content="{{ page.title | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
|
{% if page.title %}<meta itemprop="headline" content="{{ page.title | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
|
||||||
{% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
|
{% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
|
||||||
{% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date: "%B %d, %Y" }}">{% endif %}
|
{% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date: "%B %d, %Y" }}">{% endif %}
|
||||||
{% if page.last_modified_at %}<meta itemprop="dateModified" content="{{ page.last_modified_at | date: "%B %d, %Y" }}">{% endif %}
|
{% if page.last_modified_at %}<meta itemprop="dateModified" content="{{ page.last_modified_at | date: "%B %d, %Y" }}">{% endif %}
|
||||||
|
|
||||||
<div class="page__inner-wrap">
|
<div class="page__inner-wrap">
|
||||||
{% unless page.header.overlay_color or page.header.overlay_image %}
|
{% unless page.header.overlay_color or page.header.overlay_image %}
|
||||||
<header>
|
<header>
|
||||||
{% if page.title %}<h1 id="page-title" class="page__title" itemprop="headline">{{ page.title | markdownify | remove: "<p>" | remove: "</p>" }}</h1>{% endif %}
|
{% if page.title %}<h1 class="page__title" itemprop="headline">{{ page.title | markdownify | remove: "<p>" | remove: "</p>" }}</h1>{% endif %}
|
||||||
{% if page.read_time %}
|
{% if page.read_time %}
|
||||||
<p class="page__meta"><i class="far fa-clock" aria-hidden="true"></i> {% include read-time.html %}</p>
|
<p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</header>
|
</header>
|
||||||
{% endunless %}
|
{% endunless %}
|
||||||
|
|
||||||
<section class="page__content" itemprop="text">
|
<section class="page__content" itemprop="text">
|
||||||
{% if page.toc %}
|
{{ content }}
|
||||||
<aside class="sidebar__right {% if page.toc_sticky %}sticky{% endif %}">
|
{% if page.link %}<div><a href="{{ page.link }}" class="btn btn--primary">{{ site.data.ui-text[site.locale].ext_link_label | default: "Direct Link" }}</a></div>{% endif %}
|
||||||
<nav class="toc">
|
|
||||||
<header><h4 class="nav__title"><i class="fas fa-{{ page.toc_icon | default: 'file-alt' }}"></i> {{ page.toc_label | default: site.data.ui-text[site.locale].toc_label | default: "On this page" }}</h4></header>
|
</section>
|
||||||
{% include toc.html sanitize=true html=content h_min=1 h_max=6 class="toc__menu" %}
|
|
||||||
</nav>
|
<footer class="page__meta">
|
||||||
</aside>
|
{% if site.data.ui-text[site.locale].meta_label %}
|
||||||
{% endif %}
|
<h4 class="page__meta-title">{{ site.data.ui-text[site.locale].meta_label }}</h4>
|
||||||
{{ content }}
|
{% endif %}
|
||||||
{% if page.link %}<div><a href="{{ page.link }}" class="btn btn--primary">{{ site.data.ui-text[site.locale].ext_link_label | default: "Direct Link" }}</a></div>{% endif %}
|
{% include page__taxonomy.html %}
|
||||||
</section>
|
{% if page.last_modified_at %}
|
||||||
|
<p class="page__date"><strong><i class="fa fa-fw fa-calendar" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time datetime="{{ page.last_modified_at | date: "%Y-%m-%d" }}">{{ page.last_modified_at | date: "%B %d, %Y" }}</time></p>
|
||||||
<footer class="page__meta">
|
{% elsif page.date %}
|
||||||
{% if site.data.ui-text[site.locale].meta_label %}
|
<p class="page__date"><strong><i class="fa fa-fw fa-calendar" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %d, %Y" }}</time></p>
|
||||||
<h4 class="page__meta-title">{{ site.data.ui-text[site.locale].meta_label }}</h4>
|
{% endif %}
|
||||||
{% endif %}
|
</footer>
|
||||||
{% include page__taxonomy.html %}
|
|
||||||
{% if page.last_modified_at %}
|
{% if page.share %}{% include social-share.html %}{% endif %}
|
||||||
<p class="page__date"><strong><i class="fas fa-fw fa-calendar-alt" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time datetime="{{ page.last_modified_at | date: "%Y-%m-%d" }}">{{ page.last_modified_at | date: "%B %d, %Y" }}</time></p>
|
|
||||||
{% elsif page.date %}
|
{% include post_pagination.html %}
|
||||||
<p class="page__date"><strong><i class="fas fa-fw fa-calendar-alt" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Updated:" }}</strong> <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %d, %Y" }}</time></p>
|
</div>
|
||||||
{% endif %}
|
|
||||||
</footer>
|
{% if site.comments.provider and page.comments %}
|
||||||
|
{% include comments.html %}
|
||||||
{% if page.share %}{% include social-share.html %}{% endif %}
|
{% endif %}
|
||||||
|
</article>
|
||||||
{% include post_pagination.html %}
|
|
||||||
</div>
|
{% comment %}<!-- only show related on a post page when `related: true` -->{% endcomment %}
|
||||||
|
{% if page.id and page.related and site.related_posts.size > 0 %}
|
||||||
{% if jekyll.environment == 'production' and site.comments.provider and page.comments %}
|
<div class="page__related">
|
||||||
{% include comments.html %}
|
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
|
||||||
{% endif %}
|
<div class="grid__wrapper">
|
||||||
</article>
|
{% for post in site.related_posts limit:4 %}
|
||||||
|
{% include archive-single.html type="grid" %}
|
||||||
{% comment %}<!-- only show related on a post page when `related: true` -->{% endcomment %}
|
{% endfor %}
|
||||||
{% if page.id and page.related and site.related_posts.size > 0 %}
|
</div>
|
||||||
<div class="page__related">
|
</div>
|
||||||
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
|
{% comment %}<!-- otherwise show recent posts if no related when `related: true` -->{% endcomment %}
|
||||||
<div class="grid__wrapper">
|
{% elsif page.id and page.related %}
|
||||||
{% for post in site.related_posts limit:4 %}
|
<div class="page__related">
|
||||||
{% include archive-single.html type="grid" %}
|
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
|
||||||
{% endfor %}
|
<div class="grid__wrapper">
|
||||||
</div>
|
{% for post in site.posts limit:4 %}
|
||||||
</div>
|
{% include archive-single.html type="grid" %}
|
||||||
{% comment %}<!-- otherwise show recent posts if no related when `related: true` -->{% endcomment %}
|
{% endfor %}
|
||||||
{% elsif page.id and page.related %}
|
</div>
|
||||||
<div class="page__related">
|
</div>
|
||||||
<h4 class="page__related-title">{{ site.data.ui-text[site.locale].related_label | default: "You May Also Enjoy" }}</h4>
|
{% endif %}
|
||||||
<div class="grid__wrapper">
|
</div>
|
||||||
{% for post in site.posts limit:4 %}
|
|
||||||
{% if post.id == page.id %}
|
|
||||||
{% continue %}
|
|
||||||
{% endif %}
|
|
||||||
{% include archive-single.html type="grid" %}
|
|
||||||
{% endfor %}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
|
|
17
_layouts/splash.html
Normal file → Executable file
17
_layouts/splash.html
Normal file → Executable file
|
@ -9,14 +9,29 @@ layout: default
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<div id="main" role="main">
|
<div id="main" role="main">
|
||||||
<article class="splash" itemscope itemtype="https://schema.org/CreativeWork">
|
<article class="splash" itemscope itemtype="http://schema.org/CreativeWork">
|
||||||
{% if page.title %}<meta itemprop="headline" content="{{ page.title | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
|
{% if page.title %}<meta itemprop="headline" content="{{ page.title | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
|
||||||
{% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
|
{% if page.excerpt %}<meta itemprop="description" content="{{ page.excerpt | markdownify | strip_html | strip_newlines | escape_once }}">{% endif %}
|
||||||
{% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date: "%B %d, %Y" }}">{% endif %}
|
{% if page.date %}<meta itemprop="datePublished" content="{{ page.date | date: "%B %d, %Y" }}">{% endif %}
|
||||||
{% if page.last_modified_at %}<meta itemprop="dateModified" content="{{ page.last_modified_at | date: "%B %d, %Y" }}">{% endif %}
|
{% if page.last_modified_at %}<meta itemprop="dateModified" content="{{ page.last_modified_at | date: "%B %d, %Y" }}">{% endif %}
|
||||||
|
|
||||||
<section class="page__content" itemprop="text">
|
<section class="page__content" itemprop="text">
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
{% assign split_path = page.path | split: "/" %}
|
||||||
|
{% assign locale = split_path[1] %}
|
||||||
|
|
||||||
|
{% for link in site.data.navigation[locale].bottom %}
|
||||||
|
{% if link.url contains 'http' %}
|
||||||
|
{% assign domain = '' %}
|
||||||
|
{% else %}
|
||||||
|
{% assign domain = site.url | append: site.baseurl %}
|
||||||
|
{% endif %}
|
||||||
|
<div class ="notice"><b>{{ link.title }}</b></div>
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
{{ content }}
|
{{ content }}
|
||||||
</section>
|
</section>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
layout: archive
|
|
||||||
---
|
|
||||||
|
|
||||||
{{ content }}
|
|
||||||
|
|
||||||
<div class="entries-{{ page.entries_layout | default: 'list' }}">
|
|
||||||
{% include posts-tag.html taxonomy=page.taxonomy type=page.entries_layout %}
|
|
||||||
</div>
|
|
|
@ -1,42 +0,0 @@
|
||||||
---
|
|
||||||
layout: archive
|
|
||||||
---
|
|
||||||
|
|
||||||
{{ content }}
|
|
||||||
|
|
||||||
{% assign tags_max = 0 %}
|
|
||||||
{% for tag in site.tags %}
|
|
||||||
{% if tag[1].size > tags_max %}
|
|
||||||
{% assign tags_max = tag[1].size %}
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
|
|
||||||
<ul class="taxonomy__index">
|
|
||||||
{% for i in (1..tags_max) reversed %}
|
|
||||||
{% for tag in site.tags %}
|
|
||||||
{% if tag[1].size == i %}
|
|
||||||
<li>
|
|
||||||
<a href="#{{ tag[0] | slugify }}">
|
|
||||||
<strong>{{ tag[0] }}</strong> <span class="taxonomy__count">{{ i }}</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
{% for i in (1..tags_max) reversed %}
|
|
||||||
{% for tag in site.tags %}
|
|
||||||
{% if tag[1].size == i %}
|
|
||||||
<section id="{{ tag[0] | slugify | downcase }}" class="taxonomy__section">
|
|
||||||
<h2 class="archive__subtitle">{{ tag[0] }}</h2>
|
|
||||||
<div class="entries-{{ page.entries_layout | default: 'list' }}">
|
|
||||||
{% for post in tag.last %}
|
|
||||||
{% include archive-single.html type=page.entries_layout %}
|
|
||||||
{% endfor %}
|
|
||||||
</div>
|
|
||||||
<a href="#page-title" class="back-to-top">{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑</a>
|
|
||||||
</section>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
{% endfor %}
|
|
10
_sass/minimal-mistakes.scss
Normal file → Executable file
10
_sass/minimal-mistakes.scss
Normal file → Executable file
|
@ -1,7 +1,7 @@
|
||||||
/*!
|
/*!
|
||||||
* Minimal Mistakes Jekyll Theme 4.16.4 by Michael Rose
|
* Minimal Mistakes Jekyll Theme 4.6.0 by Michael Rose
|
||||||
* Copyright 2013-2019 Michael Rose - mademistakes.com | @mmistakes
|
* Copyright 2017 Michael Rose - mademistakes.com | @mmistakes
|
||||||
* Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE)
|
* Licensed under MIT (https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE.txt)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Variables */
|
/* Variables */
|
||||||
|
@ -10,6 +10,7 @@
|
||||||
/* Mixins and functions */
|
/* Mixins and functions */
|
||||||
@import "minimal-mistakes/vendor/breakpoint/breakpoint";
|
@import "minimal-mistakes/vendor/breakpoint/breakpoint";
|
||||||
@include breakpoint-set("to ems", true);
|
@include breakpoint-set("to ems", true);
|
||||||
|
@import "minimal-mistakes/vendor/font-awesome/font-awesome";
|
||||||
@import "minimal-mistakes/vendor/magnific-popup/magnific-popup"; // Magnific Popup
|
@import "minimal-mistakes/vendor/magnific-popup/magnific-popup"; // Magnific Popup
|
||||||
@import "minimal-mistakes/vendor/susy/susy";
|
@import "minimal-mistakes/vendor/susy/susy";
|
||||||
@import "minimal-mistakes/mixins";
|
@import "minimal-mistakes/mixins";
|
||||||
|
@ -27,7 +28,6 @@
|
||||||
@import "minimal-mistakes/masthead";
|
@import "minimal-mistakes/masthead";
|
||||||
@import "minimal-mistakes/navigation";
|
@import "minimal-mistakes/navigation";
|
||||||
@import "minimal-mistakes/footer";
|
@import "minimal-mistakes/footer";
|
||||||
@import "minimal-mistakes/search";
|
|
||||||
@import "minimal-mistakes/syntax";
|
@import "minimal-mistakes/syntax";
|
||||||
|
|
||||||
/* Utility classes */
|
/* Utility classes */
|
||||||
|
@ -37,4 +37,4 @@
|
||||||
@import "minimal-mistakes/page";
|
@import "minimal-mistakes/page";
|
||||||
@import "minimal-mistakes/archive";
|
@import "minimal-mistakes/archive";
|
||||||
@import "minimal-mistakes/sidebar";
|
@import "minimal-mistakes/sidebar";
|
||||||
@import "minimal-mistakes/print";
|
@import "minimal-mistakes/print";
|
0
_sass/minimal-mistakes/_animations.scss
Normal file → Executable file
0
_sass/minimal-mistakes/_animations.scss
Normal file → Executable file
184
_sass/minimal-mistakes/_archive.scss
Normal file → Executable file
184
_sass/minimal-mistakes/_archive.scss
Normal file → Executable file
|
@ -3,7 +3,6 @@
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
.archive {
|
.archive {
|
||||||
margin-top: 1em;
|
|
||||||
margin-bottom: 2em;
|
margin-bottom: 2em;
|
||||||
|
|
||||||
@include breakpoint($large) {
|
@include breakpoint($large) {
|
||||||
|
@ -16,10 +15,11 @@
|
||||||
width: calc(100% - #{$right-sidebar-width});
|
width: calc(100% - #{$right-sidebar-width});
|
||||||
padding-right: $right-sidebar-width;
|
padding-right: $right-sidebar-width;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.archive__item {
|
a {
|
||||||
position: relative;
|
color: inherit;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive__subtitle {
|
.archive__subtitle {
|
||||||
|
@ -37,19 +37,9 @@
|
||||||
.archive__item-title {
|
.archive__item-title {
|
||||||
margin-bottom: 0.25em;
|
margin-bottom: 0.25em;
|
||||||
font-family: $sans-serif-narrow;
|
font-family: $sans-serif-narrow;
|
||||||
line-height: initial;
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
|
||||||
a[rel="permalink"]::before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
a + a {
|
a + a {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
@ -57,6 +47,7 @@
|
||||||
|
|
||||||
/* remove border*/
|
/* remove border*/
|
||||||
.page__content {
|
.page__content {
|
||||||
|
|
||||||
.archive__item-title {
|
.archive__item-title {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
|
@ -70,63 +61,46 @@
|
||||||
& + p {
|
& + p {
|
||||||
text-indent: 0;
|
text-indent: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive__item-teaser {
|
.archive__item-teaser {
|
||||||
position: relative;
|
|
||||||
border-radius: $border-radius;
|
border-radius: $border-radius;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive__item-caption {
|
.archive__item:hover {
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
right: 0;
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 2px 5px;
|
|
||||||
color: #fff;
|
|
||||||
font-family: $caption-font-family;
|
|
||||||
font-size: $type-size-8;
|
|
||||||
background: #000;
|
|
||||||
text-align: right;
|
|
||||||
z-index: 5;
|
|
||||||
opacity: 0.5;
|
|
||||||
border-radius: $border-radius 0 0 0;
|
|
||||||
|
|
||||||
@include breakpoint($large) {
|
.archive__item-teaser {
|
||||||
padding: 5px 10px;
|
box-shadow: 0 0 10px rgba(#000, 0.25);
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
.archive__item-title {
|
||||||
color: #fff;
|
text-decoration: underline;
|
||||||
text-decoration: none;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
List view
|
List view
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
.list__item {
|
.list__item {
|
||||||
|
|
||||||
.page__meta {
|
.page__meta {
|
||||||
margin: 0 0 4px;
|
margin: 0 0 4px;
|
||||||
font-size: 0.6em;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Grid view
|
Grid view
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
.archive {
|
.archive {
|
||||||
|
|
||||||
.grid__wrapper {
|
.grid__wrapper {
|
||||||
/* extend grid elements to the right */
|
/* extend grid elements to the right */
|
||||||
|
|
||||||
|
@ -147,12 +121,12 @@
|
||||||
float: left;
|
float: left;
|
||||||
width: span(5 of 10);
|
width: span(5 of 10);
|
||||||
|
|
||||||
&:nth-child(2n + 1) {
|
&:nth-child(2n+1) {
|
||||||
clear: both;
|
clear: both;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:nth-child(2n + 2) {
|
&:nth-child(2n+2) {
|
||||||
clear: none;
|
clear: none;
|
||||||
margin-left: gutter(of 10);
|
margin-left: gutter(of 10);
|
||||||
}
|
}
|
||||||
|
@ -163,25 +137,25 @@
|
||||||
margin-right: 0; /* override margin*/
|
margin-right: 0; /* override margin*/
|
||||||
width: span(3 of 12);
|
width: span(3 of 12);
|
||||||
|
|
||||||
&:nth-child(2n + 1) {
|
&:nth-child(2n+1) {
|
||||||
clear: none;
|
clear: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:nth-child(4n + 1) {
|
&:nth-child(4n+1) {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:nth-child(4n + 2) {
|
&:nth-child(4n+2) {
|
||||||
clear: none;
|
clear: none;
|
||||||
margin-left: gutter(1 of 12);
|
margin-left: gutter(1 of 12);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:nth-child(4n + 3) {
|
&:nth-child(4n+3) {
|
||||||
clear: none;
|
clear: none;
|
||||||
margin-left: gutter(1 of 12);
|
margin-left: gutter(1 of 12);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:nth-child(4n + 4) {
|
&:nth-child(4n+4) {
|
||||||
clear: none;
|
clear: none;
|
||||||
margin-left: gutter(1 of 12);
|
margin-left: gutter(1 of 12);
|
||||||
}
|
}
|
||||||
|
@ -189,7 +163,6 @@
|
||||||
|
|
||||||
.page__meta {
|
.page__meta {
|
||||||
margin: 0 0 4px;
|
margin: 0 0 4px;
|
||||||
font-size: 0.6em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive__item-title {
|
.archive__item-title {
|
||||||
|
@ -207,6 +180,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive__item-teaser {
|
.archive__item-teaser {
|
||||||
|
|
||||||
@include breakpoint($small) {
|
@include breakpoint($small) {
|
||||||
max-height: 200px;
|
max-height: 200px;
|
||||||
}
|
}
|
||||||
|
@ -217,6 +191,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Features
|
Features
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
@ -225,33 +200,28 @@
|
||||||
@include clearfix();
|
@include clearfix();
|
||||||
margin-bottom: 2em;
|
margin-bottom: 2em;
|
||||||
border-bottom: 1px solid $border-color;
|
border-bottom: 1px solid $border-color;
|
||||||
|
|
||||||
.archive__item-title {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.feature__item {
|
.feature__item {
|
||||||
position: relative;
|
|
||||||
margin-bottom: 2em;
|
margin-bottom: 2em;
|
||||||
font-size: 1.125em;
|
font-size: 1.25rem;
|
||||||
|
|
||||||
@include breakpoint($small) {
|
@include breakpoint($small) {
|
||||||
float: left;
|
float: left;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
width: span(4 of 12);
|
width: span(4 of 12);
|
||||||
|
|
||||||
&:nth-child(3n + 1) {
|
&:nth-child(3n+1) {
|
||||||
clear: both;
|
clear: both;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:nth-child(3n + 2) {
|
&:nth-child(3n+2) {
|
||||||
clear: none;
|
clear: none;
|
||||||
margin-left: gutter(of 12);
|
margin-left: gutter(of 12);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:nth-child(3n + 3) {
|
&:nth-child(3n+3) {
|
||||||
clear: none;
|
clear: none;
|
||||||
margin-left: gutter(of 12);
|
margin-left: gutter(of 12);
|
||||||
}
|
}
|
||||||
|
@ -262,47 +232,20 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive__item-body {
|
|
||||||
padding-left: gutter(1 of 12);
|
|
||||||
padding-right: gutter(1 of 12);
|
|
||||||
}
|
|
||||||
|
|
||||||
a.btn::before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
&--left {
|
&--left {
|
||||||
position: relative;
|
|
||||||
float: left;
|
float: left;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
clear: both;
|
clear: both;
|
||||||
font-size: 1.125em;
|
font-size: 1.25rem;
|
||||||
|
|
||||||
.archive__item {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.archive__item-teaser {
|
.archive__item-teaser {
|
||||||
margin-bottom: 2em;
|
margin-bottom: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.btn::before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@include breakpoint($small) {
|
@include breakpoint($small) {
|
||||||
|
|
||||||
.archive__item-teaser {
|
.archive__item-teaser {
|
||||||
float: left;
|
float: left;
|
||||||
width: span(5 of 12);
|
width: span(5 of 12);
|
||||||
|
@ -318,31 +261,17 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&--right {
|
&--right {
|
||||||
position: relative;
|
|
||||||
float: left;
|
float: left;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
clear: both;
|
clear: both;
|
||||||
font-size: 1.125em;
|
font-size: 1.25rem;
|
||||||
|
|
||||||
.archive__item {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.archive__item-teaser {
|
.archive__item-teaser {
|
||||||
margin-bottom: 2em;
|
margin-bottom: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.btn::before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@include breakpoint($small) {
|
@include breakpoint($small) {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
|
|
||||||
|
@ -352,7 +281,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive__item-body {
|
.archive__item-body {
|
||||||
float: left;
|
float: right;
|
||||||
width: span(7 of 12);
|
width: span(7 of 12);
|
||||||
padding-left: gutter(0.5 of 12);
|
padding-left: gutter(0.5 of 12);
|
||||||
padding-right: gutter(1 of 12);
|
padding-right: gutter(1 of 12);
|
||||||
|
@ -361,32 +290,17 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&--center {
|
&--center {
|
||||||
position: relative;
|
|
||||||
float: left;
|
float: left;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
clear: both;
|
clear: both;
|
||||||
font-size: 1.125em;
|
font-size: 1.25rem;
|
||||||
|
|
||||||
.archive__item {
|
|
||||||
float: left;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.archive__item-teaser {
|
.archive__item-teaser {
|
||||||
margin-bottom: 2em;
|
margin-bottom: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.btn::before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
top: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@include breakpoint($small) {
|
@include breakpoint($small) {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
|
@ -401,38 +315,4 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/* Place inside an archive layout */
|
|
||||||
|
|
||||||
.archive {
|
|
||||||
.feature__wrapper {
|
|
||||||
.archive__item-title {
|
|
||||||
margin-top: 0.25em;
|
|
||||||
font-size: 1em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.feature__item,
|
|
||||||
.feature__item--left,
|
|
||||||
.feature__item--center,
|
|
||||||
.feature__item--right {
|
|
||||||
font-size: 1em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
Wide Pages
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
.wide {
|
|
||||||
.archive {
|
|
||||||
@include breakpoint($large) {
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@include breakpoint($x-large) {
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
79
_sass/minimal-mistakes/_base.scss
Normal file → Executable file
79
_sass/minimal-mistakes/_base.scss
Normal file → Executable file
|
@ -21,12 +21,7 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h1,
|
h1, h2, h3, h4, h5, h6 {
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6 {
|
|
||||||
margin: 2em 0 0.5em;
|
margin: 2em 0 0.5em;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
font-family: $header-font-family;
|
font-family: $header-font-family;
|
||||||
|
@ -58,8 +53,7 @@ h6 {
|
||||||
font-size: $type-size-6;
|
font-size: $type-size-6;
|
||||||
}
|
}
|
||||||
|
|
||||||
small,
|
small, .small {
|
||||||
.small {
|
|
||||||
font-size: $type-size-6;
|
font-size: $type-size-6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -82,15 +76,7 @@ del a {
|
||||||
|
|
||||||
/* reduce orphans and widows when printing */
|
/* reduce orphans and widows when printing */
|
||||||
|
|
||||||
p,
|
p, pre, blockquote, ul, ol, dl, figure, table, fieldset {
|
||||||
pre,
|
|
||||||
blockquote,
|
|
||||||
ul,
|
|
||||||
ol,
|
|
||||||
dl,
|
|
||||||
figure,
|
|
||||||
table,
|
|
||||||
fieldset {
|
|
||||||
orphans: 3;
|
orphans: 3;
|
||||||
widows: 3;
|
widows: 3;
|
||||||
}
|
}
|
||||||
|
@ -130,29 +116,20 @@ a {
|
||||||
@extend %tab-focus;
|
@extend %tab-focus;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:visited {
|
&:hover,
|
||||||
color: $link-color-visited;
|
&:active {
|
||||||
}
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: $link-color-hover;
|
color: $link-color-hover;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/* buttons */
|
&:visited {
|
||||||
|
color: $link-color-visited;
|
||||||
button:focus {
|
}
|
||||||
@extend %tab-focus;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* code */
|
/* code */
|
||||||
|
|
||||||
tt,
|
tt, code, kbd, samp, pre {
|
||||||
code,
|
|
||||||
kbd,
|
|
||||||
samp,
|
|
||||||
pre {
|
|
||||||
font-family: $monospace;
|
font-family: $monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -167,12 +144,13 @@ figcaption > code,
|
||||||
td > code {
|
td > code {
|
||||||
padding-top: 0.1rem;
|
padding-top: 0.1rem;
|
||||||
padding-bottom: 0.1rem;
|
padding-bottom: 0.1rem;
|
||||||
font-size: 0.8em;
|
font-size: $type-size-6;
|
||||||
background: $code-background-color;
|
background: $code-background-color;
|
||||||
|
border: 1px solid $border-color;
|
||||||
border-radius: $border-radius;
|
border-radius: $border-radius;
|
||||||
|
box-shadow: $box-shadow;
|
||||||
|
|
||||||
&:before,
|
&:before, &:after {
|
||||||
&:after {
|
|
||||||
letter-spacing: -0.2em;
|
letter-spacing: -0.2em;
|
||||||
content: "\00a0"; /* non-breaking space*/
|
content: "\00a0"; /* non-breaking space*/
|
||||||
}
|
}
|
||||||
|
@ -209,9 +187,9 @@ figure {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: flex;
|
display: flex;
|
||||||
-webkit-box-pack: justify;
|
-webkit-box-pack: justify;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
-webkit-box-align: start;
|
-webkit-box-align: start;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
margin: 2em 0;
|
margin: 2em 0;
|
||||||
|
|
||||||
|
@ -277,12 +255,14 @@ figcaption {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Fix IE9 SVG bug */
|
/* Fix IE9 SVG bug */
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Navigation lists
|
Navigation lists
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
@ -330,28 +310,7 @@ nav {
|
||||||
Global animation transition
|
Global animation transition
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
b,
|
b, i, strong, em, blockquote, p, q, span, figure, img, h1, h2, header, input, a, tr, td, form button, input[type="submit"], .btn, .highlight, .archive__item-teaser {
|
||||||
i,
|
|
||||||
strong,
|
|
||||||
em,
|
|
||||||
blockquote,
|
|
||||||
p,
|
|
||||||
q,
|
|
||||||
span,
|
|
||||||
figure,
|
|
||||||
img,
|
|
||||||
h1,
|
|
||||||
h2,
|
|
||||||
header,
|
|
||||||
input,
|
|
||||||
a,
|
|
||||||
tr,
|
|
||||||
td,
|
|
||||||
form button,
|
|
||||||
input[type="submit"],
|
|
||||||
.btn,
|
|
||||||
.highlight,
|
|
||||||
.archive__item-teaser {
|
|
||||||
-webkit-transition: $global-transition;
|
-webkit-transition: $global-transition;
|
||||||
transition: $global-transition;
|
transition: $global-transition;
|
||||||
}
|
}
|
9
_sass/minimal-mistakes/_buttons.scss
Normal file → Executable file
9
_sass/minimal-mistakes/_buttons.scss
Normal file → Executable file
|
@ -39,6 +39,7 @@
|
||||||
(info, $info-color),
|
(info, $info-color),
|
||||||
(facebook, $facebook-color),
|
(facebook, $facebook-color),
|
||||||
(twitter, $twitter-color),
|
(twitter, $twitter-color),
|
||||||
|
(google-plus, $google-plus-color),
|
||||||
(linkedin, $linkedin-color);
|
(linkedin, $linkedin-color);
|
||||||
|
|
||||||
@each $buttoncolor, $color in $buttoncolors {
|
@each $buttoncolor, $color in $buttoncolors {
|
||||||
|
@ -51,13 +52,13 @@
|
||||||
border: 1px solid #fff;
|
border: 1px solid #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:visited {
|
|
||||||
@include yiq-contrasted($color);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
@include yiq-contrasted(mix(#000, $color, 20%));
|
@include yiq-contrasted(mix(#000, $color, 20%));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:visited {
|
||||||
|
@include yiq-contrasted($color);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
18
_sass/minimal-mistakes/_footer.scss
Normal file → Executable file
18
_sass/minimal-mistakes/_footer.scss
Normal file → Executable file
|
@ -17,9 +17,9 @@
|
||||||
margin-top: 3em;
|
margin-top: 3em;
|
||||||
color: $muted-text-color;
|
color: $muted-text-color;
|
||||||
-webkit-animation: $intro-transition;
|
-webkit-animation: $intro-transition;
|
||||||
animation: $intro-transition;
|
animation: $intro-transition;
|
||||||
-webkit-animation-delay: 0.45s;
|
-webkit-animation-delay: 0.45s;
|
||||||
animation-delay: 0.45s;
|
animation-delay: 0.45s;
|
||||||
background-color: $footer-background-color;
|
background-color: $footer-background-color;
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
@ -44,10 +44,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.fas,
|
.fa {
|
||||||
.fab,
|
|
||||||
.far,
|
|
||||||
.fal {
|
|
||||||
color: $muted-text-color;
|
color: $muted-text-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -58,6 +55,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.page__footer-follow {
|
.page__footer-follow {
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -82,10 +80,4 @@
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
.social-icons {
|
|
||||||
a {
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
56
_sass/minimal-mistakes/_forms.scss
Normal file → Executable file
56
_sass/minimal-mistakes/_forms.scss
Normal file → Executable file
|
@ -25,7 +25,7 @@ form {
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
margin-bottom: (5px / 2);
|
margin-bottom: 5px / 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
|
@ -196,9 +196,10 @@ input[type="hidden"] {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Disabled state
|
Disabled state
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
input[disabled],
|
input[disabled],
|
||||||
select[disabled],
|
select[disabled],
|
||||||
|
@ -210,17 +211,17 @@ textarea[readonly] {
|
||||||
cursor: not-allowed;
|
cursor: not-allowed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Focus & active state
|
Focus & active state
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
input:focus,
|
input:focus,
|
||||||
textarea:focus {
|
textarea:focus {
|
||||||
border-color: $primary-color;
|
border-color: $primary-color;
|
||||||
outline: 0;
|
outline: 0;
|
||||||
outline: thin dotted \9;
|
outline: thin dotted \9;
|
||||||
box-shadow: inset 0 1px 3px rgba($text-color, 0.06),
|
box-shadow: inset 0 1px 3px rgba($text-color, 0.06), 0 0 5px rgba($primary-color, 0.7);
|
||||||
0 0 5px rgba($primary-color, 0.7);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="file"]:focus,
|
input[type="file"]:focus,
|
||||||
|
@ -230,9 +231,10 @@ select:focus {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Help text
|
Help text
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
.help-block,
|
.help-block,
|
||||||
.help-inline {
|
.help-inline {
|
||||||
|
@ -251,19 +253,10 @@ select:focus {
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
.form-group
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
.form-group {
|
|
||||||
margin-bottom: 5px;
|
|
||||||
padding: 0;
|
|
||||||
border-width: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
.form-inline
|
.form-inline
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
.form-inline input,
|
.form-inline input,
|
||||||
.form-inline textarea,
|
.form-inline textarea,
|
||||||
|
@ -288,12 +281,12 @@ select:focus {
|
||||||
.form-inline .checkbox input[type="checkbox"] {
|
.form-inline .checkbox input[type="checkbox"] {
|
||||||
float: left;
|
float: left;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
margin-right: 3px;
|
margin-right: 3px; }
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
.form-search
|
.form-search
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
.form-search input,
|
.form-search input,
|
||||||
.form-search textarea,
|
.form-search textarea,
|
||||||
|
@ -328,12 +321,13 @@ select:focus {
|
||||||
margin-right: 3px;
|
margin-right: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
.form--loading
|
.form--loading
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
.form--loading:before {
|
.form--loading:before {
|
||||||
content: "";
|
content: '';
|
||||||
}
|
}
|
||||||
|
|
||||||
.form--loading .form__spinner {
|
.form--loading .form__spinner {
|
||||||
|
@ -358,9 +352,11 @@ select:focus {
|
||||||
z-index: 11;
|
z-index: 11;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Google search form
|
Google search form
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
#goog-fixurl {
|
#goog-fixurl {
|
||||||
ul {
|
ul {
|
||||||
|
@ -390,4 +386,4 @@ select:focus {
|
||||||
|
|
||||||
#goog-wm-sb {
|
#goog-wm-sb {
|
||||||
@extend .btn;
|
@extend .btn;
|
||||||
}
|
}
|
21
_sass/minimal-mistakes/_masthead.scss
Normal file → Executable file
21
_sass/minimal-mistakes/_masthead.scss
Normal file → Executable file
|
@ -6,9 +6,9 @@
|
||||||
position: relative;
|
position: relative;
|
||||||
border-bottom: 1px solid $border-color;
|
border-bottom: 1px solid $border-color;
|
||||||
-webkit-animation: $intro-transition;
|
-webkit-animation: $intro-transition;
|
||||||
animation: $intro-transition;
|
animation: $intro-transition;
|
||||||
-webkit-animation-delay: 0.15s;
|
-webkit-animation-delay: 0.15s;
|
||||||
animation-delay: 0.15s;
|
animation-delay: 0.15s;
|
||||||
z-index: 20;
|
z-index: 20;
|
||||||
|
|
||||||
&__inner-wrap {
|
&__inner-wrap {
|
||||||
|
@ -18,15 +18,13 @@
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
-webkit-box-pack: justify;
|
-webkit-box-pack: justify;
|
||||||
-ms-flex-pack: justify;
|
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
font-family: $sans-serif-narrow;
|
font-family: $sans-serif-narrow;
|
||||||
|
|
||||||
@include breakpoint($x-large) {
|
@include breakpoint($x-large) {
|
||||||
max-width: $max-width;
|
max-width: $x-large;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav {
|
nav {
|
||||||
|
@ -39,16 +37,13 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-logo img {
|
|
||||||
max-height: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.site-title {
|
.site-title {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
-ms-flex-item-align: center;
|
padding: 0.5rem 0;
|
||||||
align-self: center;
|
align-self: stretch;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
align-items: center;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
z-index: 20;
|
z-index: 20;
|
||||||
}
|
}
|
||||||
|
@ -85,4 +80,4 @@
|
||||||
padding-right: 2em;
|
padding-right: 2em;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
}
|
}
|
||||||
}
|
}
|
4
_sass/minimal-mistakes/_mixins.scss
Normal file → Executable file
4
_sass/minimal-mistakes/_mixins.scss
Normal file → Executable file
|
@ -4,9 +4,9 @@
|
||||||
|
|
||||||
%tab-focus {
|
%tab-focus {
|
||||||
/* Default*/
|
/* Default*/
|
||||||
outline: thin dotted $focus-color;
|
outline: thin dotted $warning-color;
|
||||||
/* Webkit*/
|
/* Webkit*/
|
||||||
outline: 5px auto $focus-color;
|
outline: 5px auto $warning-color;
|
||||||
outline-offset: -2px;
|
outline-offset: -2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
927
_sass/minimal-mistakes/_navigation.scss
Normal file → Executable file
927
_sass/minimal-mistakes/_navigation.scss
Normal file → Executable file
File diff suppressed because it is too large
Load diff
13
_sass/minimal-mistakes/_notices.scss
Normal file → Executable file
13
_sass/minimal-mistakes/_notices.scss
Normal file → Executable file
|
@ -13,11 +13,11 @@
|
||||||
@mixin notice($notice-color) {
|
@mixin notice($notice-color) {
|
||||||
margin: 2em 0 !important; /* override*/
|
margin: 2em 0 !important; /* override*/
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
color: $dark-gray;
|
|
||||||
font-family: $global-font-family;
|
font-family: $global-font-family;
|
||||||
font-size: $type-size-6 !important;
|
font-size: $type-size-6 !important;
|
||||||
text-indent: initial; /* override*/
|
text-indent: initial; /* override*/
|
||||||
background-color: mix(#fff, $notice-color, 90%);
|
font-weight: bold;
|
||||||
|
background-color: mix($background-color, $notice-color, 45%);
|
||||||
border-radius: $border-radius;
|
border-radius: $border-radius;
|
||||||
box-shadow: 0 1px 1px rgba($notice-color, 0.25);
|
box-shadow: 0 1px 1px rgba($notice-color, 0.25);
|
||||||
|
|
||||||
|
@ -45,17 +45,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: $notice-color;
|
color: mix(#fff, $notice-color, 30%);
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
color: mix(#000, $notice-color, 40%);
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
|
||||||
background-color: mix(#fff, $notice-color, 95%)
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
&:last-child {
|
&:last-child {
|
||||||
margin-bottom: 0; /* override*/
|
margin-bottom: 0; /* override*/
|
||||||
|
|
125
_sass/minimal-mistakes/_page.scss
Normal file → Executable file
125
_sass/minimal-mistakes/_page.scss
Normal file → Executable file
|
@ -5,21 +5,23 @@
|
||||||
#main {
|
#main {
|
||||||
@include clearfix;
|
@include clearfix;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
margin-top: 2em;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
padding-left: 1em;
|
padding-left: 1em;
|
||||||
padding-right: 1em;
|
padding-right: 1em;
|
||||||
-webkit-animation: $intro-transition;
|
-webkit-animation: $intro-transition;
|
||||||
animation: $intro-transition;
|
animation: $intro-transition;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
-webkit-animation-delay: 0.15s;
|
-webkit-animation-delay: 0.35s;
|
||||||
animation-delay: 0.15s;
|
animation-delay: 0.35s;
|
||||||
|
|
||||||
@include breakpoint($x-large) {
|
@include breakpoint($x-large) {
|
||||||
max-width: $max-width;
|
max-width: $x-large;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.page {
|
.page {
|
||||||
|
|
||||||
@include breakpoint($large) {
|
@include breakpoint($large) {
|
||||||
float: right;
|
float: right;
|
||||||
width: calc(100% - #{$right-sidebar-width-narrow});
|
width: calc(100% - #{$right-sidebar-width-narrow});
|
||||||
|
@ -33,7 +35,6 @@
|
||||||
|
|
||||||
.page__inner-wrap {
|
.page__inner-wrap {
|
||||||
float: left;
|
float: left;
|
||||||
margin-top: 1em;
|
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@ -67,15 +68,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.page__content {
|
.page__content {
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
padding-bottom: 0.5em;
|
padding-bottom: 0.5em;
|
||||||
border-bottom: 1px solid $border-color;
|
border-bottom: 1px solid $border-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
p,
|
p, li, dl {
|
||||||
li,
|
font-size: .85em;
|
||||||
dl {
|
|
||||||
font-size: 1em;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* paragraph indents */
|
/* paragraph indents */
|
||||||
|
@ -92,6 +92,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
a:not(.btn) {
|
a:not(.btn) {
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
|
|
||||||
|
@ -129,9 +130,9 @@
|
||||||
margin-bottom: 2em;
|
margin-bottom: 2em;
|
||||||
@include clearfix;
|
@include clearfix;
|
||||||
-webkit-animation: $intro-transition;
|
-webkit-animation: $intro-transition;
|
||||||
animation: $intro-transition;
|
animation: $intro-transition;
|
||||||
-webkit-animation-delay: 0.25s;
|
-webkit-animation-delay: 0.25s;
|
||||||
animation-delay: 0.25s;
|
animation-delay: 0.25s;
|
||||||
|
|
||||||
&--overlay {
|
&--overlay {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -142,9 +143,9 @@
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
-webkit-animation: $intro-transition;
|
-webkit-animation: $intro-transition;
|
||||||
animation: $intro-transition;
|
animation: $intro-transition;
|
||||||
-webkit-animation-delay: 0.25s;
|
-webkit-animation-delay: 0.25s;
|
||||||
animation-delay: 0.25s;
|
animation-delay: 0.25s;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
@ -241,6 +242,7 @@
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Page meta
|
Page meta
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
@ -266,6 +268,7 @@
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Page taxonomy
|
Page taxonomy
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
@ -295,73 +298,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.taxonomy__section {
|
|
||||||
margin-bottom: 2em;
|
|
||||||
padding-bottom: 1em;
|
|
||||||
|
|
||||||
&:not(:last-child) {
|
|
||||||
border-bottom: solid 1px $border-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.archive__item-title {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.archive__subtitle {
|
|
||||||
clear: both;
|
|
||||||
border: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
+ .taxonomy__section {
|
|
||||||
margin-top: 2em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.taxonomy__title {
|
|
||||||
margin-bottom: 0.5em;
|
|
||||||
color: lighten($text-color, 60%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.taxonomy__count {
|
|
||||||
color: lighten($text-color, 50%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.taxonomy__index {
|
|
||||||
display: grid;
|
|
||||||
grid-column-gap: 2em;
|
|
||||||
grid-template-columns: repeat(2, 1fr);
|
|
||||||
margin: 1.414em 0;
|
|
||||||
padding: 0;
|
|
||||||
font-size: 0.75em;
|
|
||||||
list-style: none;
|
|
||||||
|
|
||||||
@include breakpoint($large) {
|
|
||||||
grid-template-columns: repeat(3, 1fr);
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
|
||||||
padding: 0.25em 0;
|
|
||||||
-webkit-box-pack: justify;
|
|
||||||
-ms-flex-pack: justify;
|
|
||||||
justify-content: space-between;
|
|
||||||
color: inherit;
|
|
||||||
text-decoration: none;
|
|
||||||
border-bottom: 1px solid $border-color;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.back-to-top {
|
|
||||||
display: block;
|
|
||||||
clear: both;
|
|
||||||
color: lighten($text-color, 50%);
|
|
||||||
font-size: 0.6em;
|
|
||||||
text-transform: uppercase;
|
|
||||||
text-align: right;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Comments
|
Comments
|
||||||
|
@ -461,6 +397,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Related
|
Related
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
@ -491,30 +428,4 @@
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
font-size: $type-size-6;
|
font-size: $type-size-6;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
Wide Pages
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
.wide {
|
|
||||||
.page {
|
|
||||||
@include breakpoint($large) {
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@include breakpoint($x-large) {
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.page__related {
|
|
||||||
@include breakpoint($large) {
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@include breakpoint($x-large) {
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
0
_sass/minimal-mistakes/_print.scss
Normal file → Executable file
0
_sass/minimal-mistakes/_print.scss
Normal file → Executable file
2
_sass/minimal-mistakes/_reset.scss
Normal file → Executable file
2
_sass/minimal-mistakes/_reset.scss
Normal file → Executable file
|
@ -172,7 +172,7 @@ input[type="checkbox"] {
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="search"] { /* Appearance in Safari/Chrome*/
|
input[type="search"] { /* Appearance in Safari/Chrome*/
|
||||||
box-sizing: border-box;
|
box-sizing: content-box;
|
||||||
-webkit-appearance: textfield;
|
-webkit-appearance: textfield;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,126 +0,0 @@
|
||||||
/* ==========================================================================
|
|
||||||
SEARCH
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
.layout--search {
|
|
||||||
.archive__item-teaser {
|
|
||||||
margin-bottom: 0.25em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.search__toggle {
|
|
||||||
margin-left: 1rem;
|
|
||||||
margin-right: 1rem;
|
|
||||||
height: $nav-toggle-height;
|
|
||||||
border: 0;
|
|
||||||
outline: none;
|
|
||||||
color: $primary-color;
|
|
||||||
background-color: transparent;
|
|
||||||
cursor: pointer;
|
|
||||||
-webkit-transition: 0.2s;
|
|
||||||
transition: 0.2s;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: mix(#000, $primary-color, 25%);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.search-icon {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.search-content {
|
|
||||||
display: none;
|
|
||||||
visibility: hidden;
|
|
||||||
padding-top: 1em;
|
|
||||||
padding-bottom: 1em;
|
|
||||||
|
|
||||||
&__inner-wrap {
|
|
||||||
width: 100%;
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
padding-left: 1em;
|
|
||||||
padding-right: 1em;
|
|
||||||
-webkit-animation: $intro-transition;
|
|
||||||
animation: $intro-transition;
|
|
||||||
-webkit-animation-delay: 0.15s;
|
|
||||||
animation-delay: 0.15s;
|
|
||||||
|
|
||||||
@include breakpoint($x-large) {
|
|
||||||
max-width: $max-width;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.search-input {
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 0;
|
|
||||||
padding: 0;
|
|
||||||
border: none;
|
|
||||||
outline: none;
|
|
||||||
box-shadow: none;
|
|
||||||
background-color: transparent;
|
|
||||||
font-size: $type-size-3;
|
|
||||||
|
|
||||||
@include breakpoint($large) {
|
|
||||||
font-size: $type-size-2;
|
|
||||||
}
|
|
||||||
|
|
||||||
@include breakpoint($x-large) {
|
|
||||||
font-size: $type-size-1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&.is--visible {
|
|
||||||
display: block;
|
|
||||||
visibility: visible;
|
|
||||||
|
|
||||||
&::after {
|
|
||||||
content: "";
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.results__found {
|
|
||||||
margin-top: 0.5em;
|
|
||||||
font-size: $type-size-6;
|
|
||||||
}
|
|
||||||
|
|
||||||
.archive__item {
|
|
||||||
margin-bottom: 2em;
|
|
||||||
|
|
||||||
@include breakpoint($large) {
|
|
||||||
width: 75%;
|
|
||||||
}
|
|
||||||
|
|
||||||
@include breakpoint($x-large) {
|
|
||||||
width: 50%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.archive__item-title {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.archive__item-excerpt {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Algolia search */
|
|
||||||
|
|
||||||
.ais-search-box {
|
|
||||||
max-width: 100% !important;
|
|
||||||
margin-bottom: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.archive__item-title .ais-Highlight {
|
|
||||||
color: $primary-color;
|
|
||||||
font-style: normal;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
.archive__item-excerpt .ais-Highlight {
|
|
||||||
color: $primary-color;
|
|
||||||
font-style: normal;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
85
_sass/minimal-mistakes/_sidebar.scss
Normal file → Executable file
85
_sass/minimal-mistakes/_sidebar.scss
Normal file → Executable file
|
@ -8,31 +8,33 @@
|
||||||
|
|
||||||
.sidebar {
|
.sidebar {
|
||||||
@include clearfix();
|
@include clearfix();
|
||||||
|
margin-bottom: 1em;
|
||||||
|
-webkit-transform: translate3d(0, 0 , 0);
|
||||||
|
transform: translate3d(0, 0 , 0);
|
||||||
|
|
||||||
@include breakpoint(max-width $large) {
|
@include breakpoint(max-width $large) {
|
||||||
/* fix z-index order of follow links */
|
/* fix z-index order of follow links */
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
-webkit-transform: translate3d(0, 0, 0);
|
|
||||||
transform: translate3d(0, 0, 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint($large) {
|
@include breakpoint($large) {
|
||||||
float: left;
|
float: left;
|
||||||
width: calc(#{$right-sidebar-width-narrow} - 1em);
|
width: calc(#{$right-sidebar-width-narrow} - 1em);
|
||||||
opacity: 0.75;
|
opacity: 1;
|
||||||
-webkit-transition: opacity 0.2s ease-in-out;
|
-webkit-transition: opacity 0.2s ease-in-out;
|
||||||
transition: opacity 0.2s ease-in-out;
|
transition: opacity 0.2s ease-in-out;
|
||||||
|
|
||||||
&:hover {
|
a {
|
||||||
opacity: 1;
|
&:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.sticky {
|
&.sticky {
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
/* calculate height of nav list
|
/* calculate height of nav list */
|
||||||
viewport height - nav height - masthead x-padding
|
height: calc(100vh - 90px - 2em); // viewport height - approx. masthead height - main content top margin
|
||||||
*/
|
|
||||||
height: calc(100vh - #{$nav-height} - 2em);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -40,22 +42,12 @@
|
||||||
width: calc(#{$right-sidebar-width} - 1em);
|
width: calc(#{$right-sidebar-width} - 1em);
|
||||||
}
|
}
|
||||||
|
|
||||||
> * {
|
h2, h3, h4, h5, h6 {
|
||||||
margin-top: 1em;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6 {
|
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
font-family: $sans-serif-narrow;
|
font-family: $sans-serif-narrow;
|
||||||
}
|
}
|
||||||
|
|
||||||
p,
|
p, li {
|
||||||
li {
|
|
||||||
font-family: $sans-serif;
|
font-family: $sans-serif;
|
||||||
font-size: $type-size-6;
|
font-size: $type-size-6;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
@ -63,11 +55,6 @@
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
&.emoji {
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -82,14 +69,6 @@
|
||||||
margin-right: -1 * $right-sidebar-width-narrow;
|
margin-right: -1 * $right-sidebar-width-narrow;
|
||||||
padding-left: 1em;
|
padding-left: 1em;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
|
|
||||||
&.sticky {
|
|
||||||
@include clearfix();
|
|
||||||
position: -webkit-sticky;
|
|
||||||
position: sticky;
|
|
||||||
top: 2em;
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@include breakpoint($x-large) {
|
@include breakpoint($x-large) {
|
||||||
|
@ -99,6 +78,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.splash .sidebar__right {
|
.splash .sidebar__right {
|
||||||
|
|
||||||
@include breakpoint($large) {
|
@include breakpoint($large) {
|
||||||
position: relative;
|
position: relative;
|
||||||
float: right;
|
float: right;
|
||||||
|
@ -150,11 +130,6 @@
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
|
||||||
color: inherit;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.author__name {
|
.author__name {
|
||||||
|
@ -287,32 +262,4 @@
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
Wide Pages
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
.wide .sidebar__right {
|
|
||||||
margin-bottom: 1em;
|
|
||||||
|
|
||||||
@include breakpoint($large) {
|
|
||||||
position: initial;
|
|
||||||
top: initial;
|
|
||||||
right: initial;
|
|
||||||
width: initial;
|
|
||||||
margin-right: initial;
|
|
||||||
padding-left: initial;
|
|
||||||
z-index: initial;
|
|
||||||
|
|
||||||
&.sticky {
|
|
||||||
float: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@include breakpoint($x-large) {
|
|
||||||
width: initial;
|
|
||||||
margin-right: initial;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
396
_sass/minimal-mistakes/_syntax.scss
Normal file → Executable file
396
_sass/minimal-mistakes/_syntax.scss
Normal file → Executable file
|
@ -6,44 +6,50 @@ div.highlighter-rouge,
|
||||||
figure.highlight {
|
figure.highlight {
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
background: $base00;
|
|
||||||
color: $base05;
|
|
||||||
font-family: $monospace;
|
font-family: $monospace;
|
||||||
font-size: $type-size-6;
|
font-size: $type-size-6;
|
||||||
line-height: 1.8;
|
line-height: 1.8;
|
||||||
|
border: 1px solid $border-color;
|
||||||
border-radius: $border-radius;
|
border-radius: $border-radius;
|
||||||
|
background-color: $code-background-color;
|
||||||
|
box-shadow: $box-shadow;
|
||||||
|
|
||||||
> pre,
|
&:before {
|
||||||
pre.highlight {
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
padding: 0.5em;
|
||||||
|
background-color: $border-color;
|
||||||
|
content: "\f121";
|
||||||
|
font-family: "fontawesome" !important;
|
||||||
|
line-height: 1;
|
||||||
|
text-transform: none;
|
||||||
|
speak: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.highlight {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
figure.highlight {
|
||||||
|
padding-left: 1em;
|
||||||
|
padding-right: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
.highlight table {
|
.highlight table {
|
||||||
margin-bottom: 0;
|
|
||||||
font-size: 1em;
|
font-size: 1em;
|
||||||
border: 0;
|
border: 0;
|
||||||
|
|
||||||
td {
|
td {
|
||||||
padding: 0;
|
padding: 5px;
|
||||||
width: calc(100% - 1em);
|
|
||||||
border: 0;
|
border: 0;
|
||||||
|
|
||||||
/* line numbers*/
|
/* line numbers*/
|
||||||
&.gutter,
|
&.gutter {
|
||||||
&.rouge-gutter {
|
|
||||||
padding-right: 1em;
|
padding-right: 1em;
|
||||||
width: 1em;
|
color: rgba($muted-text-color, 0.5);
|
||||||
color: $base04;
|
|
||||||
border-right: 1px solid $base04;
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* code */
|
|
||||||
&.code,
|
|
||||||
&.rouge-code {
|
|
||||||
padding-left: 1em;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -52,273 +58,89 @@ figure.highlight {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.highlight pre {
|
.highlight pre { width: 100%; }
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.highlight .hll {
|
/*
|
||||||
background-color: $base06;
|
Solarized Light
|
||||||
}
|
http://ethanschoonover.com/solarized
|
||||||
.highlight {
|
|
||||||
.c {
|
|
||||||
/* Comment */
|
|
||||||
color: $base04;
|
|
||||||
}
|
|
||||||
.err {
|
|
||||||
/* Error */
|
|
||||||
color: $base08;
|
|
||||||
}
|
|
||||||
.k {
|
|
||||||
/* Keyword */
|
|
||||||
color: $base0e;
|
|
||||||
}
|
|
||||||
.l {
|
|
||||||
/* Literal */
|
|
||||||
color: $base09;
|
|
||||||
}
|
|
||||||
.n {
|
|
||||||
/* Name */
|
|
||||||
color: $base05;
|
|
||||||
}
|
|
||||||
.o {
|
|
||||||
/* Operator */
|
|
||||||
color: $base0c;
|
|
||||||
}
|
|
||||||
.p {
|
|
||||||
/* Punctuation */
|
|
||||||
color: $base05;
|
|
||||||
}
|
|
||||||
.cm {
|
|
||||||
/* Comment.Multiline */
|
|
||||||
color: $base04;
|
|
||||||
}
|
|
||||||
.cp {
|
|
||||||
/* Comment.Preproc */
|
|
||||||
color: $base04;
|
|
||||||
}
|
|
||||||
.c1 {
|
|
||||||
/* Comment.Single */
|
|
||||||
color: $base04;
|
|
||||||
}
|
|
||||||
.cs {
|
|
||||||
/* Comment.Special */
|
|
||||||
color: $base04;
|
|
||||||
}
|
|
||||||
.gd {
|
|
||||||
/* Generic.Deleted */
|
|
||||||
color: $base08;
|
|
||||||
}
|
|
||||||
.ge {
|
|
||||||
/* Generic.Emph */
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
.gh {
|
|
||||||
/* Generic.Heading */
|
|
||||||
color: $base05;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
.gi {
|
|
||||||
/* Generic.Inserted */
|
|
||||||
color: $base0b;
|
|
||||||
}
|
|
||||||
.gp {
|
|
||||||
/* Generic.Prompt */
|
|
||||||
color: $base04;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
.gs {
|
|
||||||
/* Generic.Strong */
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
.gu {
|
|
||||||
/* Generic.Subheading */
|
|
||||||
color: $base0c;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
.kc {
|
|
||||||
/* Keyword.Constant */
|
|
||||||
color: $base0e;
|
|
||||||
}
|
|
||||||
.kd {
|
|
||||||
/* Keyword.Declaration */
|
|
||||||
color: $base0e;
|
|
||||||
}
|
|
||||||
.kn {
|
|
||||||
/* Keyword.Namespace */
|
|
||||||
color: $base0c;
|
|
||||||
}
|
|
||||||
.kp {
|
|
||||||
/* Keyword.Pseudo */
|
|
||||||
color: $base0e;
|
|
||||||
}
|
|
||||||
.kr {
|
|
||||||
/* Keyword.Reserved */
|
|
||||||
color: $base0e;
|
|
||||||
}
|
|
||||||
.kt {
|
|
||||||
/* Keyword.Type */
|
|
||||||
color: $base0a;
|
|
||||||
}
|
|
||||||
.ld {
|
|
||||||
/* Literal.Date */
|
|
||||||
color: $base0b;
|
|
||||||
}
|
|
||||||
.m {
|
|
||||||
/* Literal.Number */
|
|
||||||
color: $base09;
|
|
||||||
}
|
|
||||||
.s {
|
|
||||||
/* Literal.String */
|
|
||||||
color: $base0b;
|
|
||||||
}
|
|
||||||
.na {
|
|
||||||
/* Name.Attribute */
|
|
||||||
color: $base0d;
|
|
||||||
}
|
|
||||||
.nb {
|
|
||||||
/* Name.Builtin */
|
|
||||||
color: $base05;
|
|
||||||
}
|
|
||||||
.nc {
|
|
||||||
/* Name.Class */
|
|
||||||
color: $base0a;
|
|
||||||
}
|
|
||||||
.no {
|
|
||||||
/* Name.Constant */
|
|
||||||
color: $base08;
|
|
||||||
}
|
|
||||||
.nd {
|
|
||||||
/* Name.Decorator */
|
|
||||||
color: $base0c;
|
|
||||||
}
|
|
||||||
.ni {
|
|
||||||
/* Name.Entity */
|
|
||||||
color: $base05;
|
|
||||||
}
|
|
||||||
.ne {
|
|
||||||
/* Name.Exception */
|
|
||||||
color: $base08;
|
|
||||||
}
|
|
||||||
.nf {
|
|
||||||
/* Name.Function */
|
|
||||||
color: $base0d;
|
|
||||||
}
|
|
||||||
.nl {
|
|
||||||
/* Name.Label */
|
|
||||||
color: $base05;
|
|
||||||
}
|
|
||||||
.nn {
|
|
||||||
/* Name.Namespace */
|
|
||||||
color: $base0a;
|
|
||||||
}
|
|
||||||
.nx {
|
|
||||||
/* Name.Other */
|
|
||||||
color: $base0d;
|
|
||||||
}
|
|
||||||
.py {
|
|
||||||
/* Name.Property */
|
|
||||||
color: $base05;
|
|
||||||
}
|
|
||||||
.nt {
|
|
||||||
/* Name.Tag */
|
|
||||||
color: $base0c;
|
|
||||||
}
|
|
||||||
.nv {
|
|
||||||
/* Name.Variable */
|
|
||||||
color: $base08;
|
|
||||||
}
|
|
||||||
.ow {
|
|
||||||
/* Operator.Word */
|
|
||||||
color: $base0c;
|
|
||||||
}
|
|
||||||
.w {
|
|
||||||
/* Text.Whitespace */
|
|
||||||
color: $base05;
|
|
||||||
}
|
|
||||||
.mf {
|
|
||||||
/* Literal.Number.Float */
|
|
||||||
color: $base09;
|
|
||||||
}
|
|
||||||
.mh {
|
|
||||||
/* Literal.Number.Hex */
|
|
||||||
color: $base09;
|
|
||||||
}
|
|
||||||
.mi {
|
|
||||||
/* Literal.Number.Integer */
|
|
||||||
color: $base09;
|
|
||||||
}
|
|
||||||
.mo {
|
|
||||||
/* Literal.Number.Oct */
|
|
||||||
color: $base09;
|
|
||||||
}
|
|
||||||
.sb {
|
|
||||||
/* Literal.String.Backtick */
|
|
||||||
color: $base0b;
|
|
||||||
}
|
|
||||||
.sc {
|
|
||||||
/* Literal.String.Char */
|
|
||||||
color: $base05;
|
|
||||||
}
|
|
||||||
.sd {
|
|
||||||
/* Literal.String.Doc */
|
|
||||||
color: $base04;
|
|
||||||
}
|
|
||||||
.s2 {
|
|
||||||
/* Literal.String.Double */
|
|
||||||
color: $base0b;
|
|
||||||
}
|
|
||||||
.se {
|
|
||||||
/* Literal.String.Escape */
|
|
||||||
color: $base09;
|
|
||||||
}
|
|
||||||
.sh {
|
|
||||||
/* Literal.String.Heredoc */
|
|
||||||
color: $base0b;
|
|
||||||
}
|
|
||||||
.si {
|
|
||||||
/* Literal.String.Interpol */
|
|
||||||
color: $base09;
|
|
||||||
}
|
|
||||||
.sx {
|
|
||||||
/* Literal.String.Other */
|
|
||||||
color: $base0b;
|
|
||||||
}
|
|
||||||
.sr {
|
|
||||||
/* Literal.String.Regex */
|
|
||||||
color: $base0b;
|
|
||||||
}
|
|
||||||
.s1 {
|
|
||||||
/* Literal.String.Single */
|
|
||||||
color: $base0b;
|
|
||||||
}
|
|
||||||
.ss {
|
|
||||||
/* Literal.String.Symbol */
|
|
||||||
color: $base0b;
|
|
||||||
}
|
|
||||||
.bp {
|
|
||||||
/* Name.Builtin.Pseudo */
|
|
||||||
color: $base05;
|
|
||||||
}
|
|
||||||
.vc {
|
|
||||||
/* Name.Variable.Class */
|
|
||||||
color: $base08;
|
|
||||||
}
|
|
||||||
.vg {
|
|
||||||
/* Name.Variable.Global */
|
|
||||||
color: $base08;
|
|
||||||
}
|
|
||||||
.vi {
|
|
||||||
/* Name.Variable.Instance */
|
|
||||||
color: $base08;
|
|
||||||
}
|
|
||||||
.il {
|
|
||||||
/* Literal.Number.Integer.Long */
|
|
||||||
color: $base09;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.gist {
|
SOLARIZED HEX ROLE
|
||||||
th, td {
|
--------- -------- ------------------------------------------
|
||||||
border-bottom: 0;
|
base01 #586e75 body text / default code / primary content
|
||||||
}
|
base1 #93a1a1 comments / secondary content
|
||||||
}
|
base3 #fdf6e3 background
|
||||||
|
orange #cb4b16 constants
|
||||||
|
red #dc322f regex, special keywords
|
||||||
|
blue #22b3eb reserved keywords
|
||||||
|
cyan #2aa198 strings, numbers
|
||||||
|
green #859900 operators, other keywords
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
.highlight .c { color: #93a1a1 } /* Comment */
|
||||||
|
.highlight .err { color: #586e75 } /* Error */
|
||||||
|
.highlight .g { color: #586e75 } /* Generic */
|
||||||
|
.highlight .k { color: #859900 } /* Keyword */
|
||||||
|
.highlight .l { color: #586e75 } /* Literal */
|
||||||
|
.highlight .n { color: #586e75 } /* Name */
|
||||||
|
.highlight .o { color: #859900 } /* Operator */
|
||||||
|
.highlight .x { color: #cb4b16 } /* Other */
|
||||||
|
.highlight .p { color: #586e75 } /* Punctuation */
|
||||||
|
.highlight .cm { color: #93a1a1 } /* Comment.Multiline */
|
||||||
|
.highlight .cp { color: #859900 } /* Comment.Preproc */
|
||||||
|
.highlight .c1 { color: #93a1a1 } /* Comment.Single */
|
||||||
|
.highlight .cs { color: #859900 } /* Comment.Special */
|
||||||
|
.highlight .gd { color: #2aa198 } /* Generic.Deleted */
|
||||||
|
.highlight .ge { color: #586e75; font-style: italic } /* Generic.Emph */
|
||||||
|
.highlight .gr { color: #dc322f } /* Generic.Error */
|
||||||
|
.highlight .gh { color: #cb4b16 } /* Generic.Heading */
|
||||||
|
.highlight .gi { color: #859900 } /* Generic.Inserted */
|
||||||
|
.highlight .go { color: #586e75 } /* Generic.Output */
|
||||||
|
.highlight .gp { color: #586e75 } /* Generic.Prompt */
|
||||||
|
.highlight .gs { color: #586e75; font-weight: bold } /* Generic.Strong */
|
||||||
|
.highlight .gu { color: #cb4b16 } /* Generic.Subheading */
|
||||||
|
.highlight .gt { color: #586e75 } /* Generic.Traceback */
|
||||||
|
.highlight .kc { color: #cb4b16 } /* Keyword.Constant */
|
||||||
|
.highlight .kd { color: #22b3eb } /* Keyword.Declaration */
|
||||||
|
.highlight .kn { color: #859900 } /* Keyword.Namespace */
|
||||||
|
.highlight .kp { color: #859900 } /* Keyword.Pseudo */
|
||||||
|
.highlight .kr { color: #22b3eb } /* Keyword.Reserved */
|
||||||
|
.highlight .kt { color: #dc322f } /* Keyword.Type */
|
||||||
|
.highlight .ld { color: #586e75 } /* Literal.Date */
|
||||||
|
.highlight .m { color: #2aa198 } /* Literal.Number */
|
||||||
|
.highlight .s { color: #2aa198 } /* Literal.String */
|
||||||
|
.highlight .na { color: #586e75 } /* Name.Attribute */
|
||||||
|
.highlight .nb { color: #B58900 } /* Name.Builtin */
|
||||||
|
.highlight .nc { color: #22b3eb } /* Name.Class */
|
||||||
|
.highlight .no { color: #cb4b16 } /* Name.Constant */
|
||||||
|
.highlight .nd { color: #22b3eb } /* Name.Decorator */
|
||||||
|
.highlight .ni { color: #cb4b16 } /* Name.Entity */
|
||||||
|
.highlight .ne { color: #cb4b16 } /* Name.Exception */
|
||||||
|
.highlight .nf { color: #22b3eb } /* Name.Function */
|
||||||
|
.highlight .nl { color: #586e75 } /* Name.Label */
|
||||||
|
.highlight .nn { color: #586e75 } /* Name.Namespace */
|
||||||
|
.highlight .nx { color: #586e75 } /* Name.Other */
|
||||||
|
.highlight .py { color: #586e75 } /* Name.Property */
|
||||||
|
.highlight .nt { color: #22b3eb } /* Name.Tag */
|
||||||
|
.highlight .nv { color: #22b3eb } /* Name.Variable */
|
||||||
|
.highlight .ow { color: #859900 } /* Operator.Word */
|
||||||
|
.highlight .w { color: #586e75 } /* Text.Whitespace */
|
||||||
|
.highlight .mf { color: #2aa198 } /* Literal.Number.Float */
|
||||||
|
.highlight .mh { color: #2aa198 } /* Literal.Number.Hex */
|
||||||
|
.highlight .mi { color: #2aa198 } /* Literal.Number.Integer */
|
||||||
|
.highlight .mo { color: #2aa198 } /* Literal.Number.Oct */
|
||||||
|
.highlight .sb { color: #93a1a1 } /* Literal.String.Backtick */
|
||||||
|
.highlight .sc { color: #2aa198 } /* Literal.String.Char */
|
||||||
|
.highlight .sd { color: #586e75 } /* Literal.String.Doc */
|
||||||
|
.highlight .s2 { color: #2aa198 } /* Literal.String.Double */
|
||||||
|
.highlight .se { color: #cb4b16 } /* Literal.String.Escape */
|
||||||
|
.highlight .sh { color: #586e75 } /* Literal.String.Heredoc */
|
||||||
|
.highlight .si { color: #2aa198 } /* Literal.String.Interpol */
|
||||||
|
.highlight .sx { color: #2aa198 } /* Literal.String.Other */
|
||||||
|
.highlight .sr { color: #dc322f } /* Literal.String.Regex */
|
||||||
|
.highlight .s1 { color: #2aa198 } /* Literal.String.Single */
|
||||||
|
.highlight .ss { color: #2aa198 } /* Literal.String.Symbol */
|
||||||
|
.highlight .bp { color: #22b3eb } /* Name.Builtin.Pseudo */
|
||||||
|
.highlight .vc { color: #22b3eb } /* Name.Variable.Class */
|
||||||
|
.highlight .vg { color: #22b3eb } /* Name.Variable.Global */
|
||||||
|
.highlight .vi { color: #22b3eb } /* Name.Variable.Instance */
|
||||||
|
.highlight .il { color: #2aa198 } /* Literal.Number.Integer.Long */
|
16
_sass/minimal-mistakes/_tables.scss
Normal file → Executable file
16
_sass/minimal-mistakes/_tables.scss
Normal file → Executable file
|
@ -3,13 +3,12 @@
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
table {
|
table {
|
||||||
display: block;
|
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
font-family: $global-font-family;
|
font-family: $global-font-family;
|
||||||
font-size: $type-size-6;
|
font-size: $type-size-6;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
overflow-x: auto;
|
border: 1px solid $light-gray;
|
||||||
|
|
||||||
& + table {
|
& + table {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
|
@ -17,23 +16,24 @@ table {
|
||||||
}
|
}
|
||||||
|
|
||||||
thead {
|
thead {
|
||||||
background-color: $border-color;
|
background-color: mix($background-color, $dark-gray, 45%);;
|
||||||
border-bottom: 2px solid mix(#000, $border-color, 25%);
|
border-bottom: 1px solid $light-gray;
|
||||||
|
color: $primary-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
th {
|
th {
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
border-right: 1px solid $light-gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
td {
|
td {
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
border-bottom: 1px solid mix(#000, $border-color, 25%);
|
border-bottom: 1px solid $light-gray;
|
||||||
|
border-right: 1px solid $light-gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
tr,
|
tr, td, th {
|
||||||
td,
|
|
||||||
th {
|
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
206
_sass/minimal-mistakes/_utilities.scss
Normal file → Executable file
206
_sass/minimal-mistakes/_utilities.scss
Normal file → Executable file
|
@ -8,8 +8,7 @@
|
||||||
|
|
||||||
/* http://www.456bereastreet.com/archive/200711/screen_readers_sometimes_ignore_displaynone/ */
|
/* http://www.456bereastreet.com/archive/200711/screen_readers_sometimes_ignore_displaynone/ */
|
||||||
|
|
||||||
.hidden,
|
.hidden {
|
||||||
.is--hidden {
|
|
||||||
display: none;
|
display: none;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
|
@ -47,7 +46,7 @@ body:hover .visually-hidden button {
|
||||||
/* screen readers */
|
/* screen readers */
|
||||||
|
|
||||||
.screen-reader-text:focus,
|
.screen-reader-text:focus,
|
||||||
.screen-reader-shortcut:focus {
|
.screen-reader-shortcut:focus {
|
||||||
clip: auto !important;
|
clip: auto !important;
|
||||||
height: auto !important;
|
height: auto !important;
|
||||||
width: auto !important;
|
width: auto !important;
|
||||||
|
@ -61,6 +60,7 @@ body:hover .visually-hidden button {
|
||||||
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
|
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Skip links
|
Skip links
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
@ -79,6 +79,7 @@ body:hover .visually-hidden button {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Type
|
Type
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
@ -103,22 +104,6 @@ body:hover .visually-hidden button {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
Task lists
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
.task-list {
|
|
||||||
padding:0;
|
|
||||||
|
|
||||||
li {
|
|
||||||
list-style-type: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.task-list-item-checkbox {
|
|
||||||
margin-right: 0.5em;
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Alignment
|
Alignment
|
||||||
|
@ -126,9 +111,7 @@ body:hover .visually-hidden button {
|
||||||
|
|
||||||
/* clearfix */
|
/* clearfix */
|
||||||
|
|
||||||
.cf {
|
.cf { clear: both; }
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wrapper {
|
.wrapper {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
@ -136,6 +119,7 @@ body:hover .visually-hidden button {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Images
|
Images
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
@ -177,7 +161,7 @@ body:hover .visually-hidden button {
|
||||||
/* file page content container */
|
/* file page content container */
|
||||||
|
|
||||||
.full {
|
.full {
|
||||||
@include breakpoint($large) {
|
@include breakpoint($large){
|
||||||
margin-right: -1 * span(2.5 of 12) !important;
|
margin-right: -1 * span(2.5 of 12) !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -200,10 +184,7 @@ body:hover .visually-hidden button {
|
||||||
/* social icons*/
|
/* social icons*/
|
||||||
|
|
||||||
.social-icons {
|
.social-icons {
|
||||||
.fas,
|
.fa {
|
||||||
.fab,
|
|
||||||
.far,
|
|
||||||
.fal {
|
|
||||||
color: $text-color;
|
color: $text-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -212,18 +193,17 @@ body:hover .visually-hidden button {
|
||||||
color: $behance-color;
|
color: $behance-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fa-bitbucket {
|
.fa-bitbucket,
|
||||||
|
.fa-bitbucket-square {
|
||||||
color: $bitbucket-color;
|
color: $bitbucket-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fa-dribbble,
|
.fa-dribbble {
|
||||||
.fa-dribble-square {
|
|
||||||
color: $dribbble-color;
|
color: $dribbble-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fa-facebook,
|
.fa-facebook,
|
||||||
.fa-facebook-square,
|
.fa-facebook-square {
|
||||||
.fa-facebook-f {
|
|
||||||
color: $facebook-color;
|
color: $facebook-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -241,8 +221,9 @@ body:hover .visually-hidden button {
|
||||||
color: $github-color;
|
color: $github-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fa-gitlab {
|
.fa-google-plus,
|
||||||
color: $gitlab-color;
|
.fa-google-plus-square {
|
||||||
|
color: $google-plus-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fa-instagram {
|
.fa-instagram {
|
||||||
|
@ -255,25 +236,16 @@ body:hover .visually-hidden button {
|
||||||
}
|
}
|
||||||
|
|
||||||
.fa-linkedin,
|
.fa-linkedin,
|
||||||
.fa-linkedin-in {
|
.fa-linkedin-square {
|
||||||
color: $linkedin-color;
|
color: $linkedin-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fa-mastodon,
|
|
||||||
.fa-mastodon-square {
|
|
||||||
color: $mastodon-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fa-pinterest,
|
.fa-pinterest,
|
||||||
.fa-pinterest-p,
|
.fa-pinterest-p,
|
||||||
.fa-pinterest-square {
|
.fa-pinterest-square {
|
||||||
color: $pinterest-color;
|
color: $pinterest-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fa-reddit {
|
|
||||||
color: $reddit-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fa-rss,
|
.fa-rss,
|
||||||
.fa-rss-square {
|
.fa-rss-square {
|
||||||
color: $rss-color;
|
color: $rss-color;
|
||||||
|
@ -299,8 +271,7 @@ body:hover .visually-hidden button {
|
||||||
}
|
}
|
||||||
|
|
||||||
.fa-vimeo,
|
.fa-vimeo,
|
||||||
.fa-vimeo-square,
|
.fa-vimeo-square {
|
||||||
.fa-vimeo-v {
|
|
||||||
color: $vimeo-color;
|
color: $vimeo-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -308,7 +279,9 @@ body:hover .visually-hidden button {
|
||||||
color: $vine-color;
|
color: $vine-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fa-youtube {
|
.fa-youtube,
|
||||||
|
.fa-youtube-square,
|
||||||
|
.fa-youtube-play {
|
||||||
color: $youtube-color;
|
color: $youtube-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -318,18 +291,18 @@ body:hover .visually-hidden button {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Navicons
|
Navicons
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
.navicon {
|
.navicon {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: $navicon-width;
|
width: $navicon-width;
|
||||||
height: $navicon-height;
|
height: $navicon-height;
|
||||||
background: $primary-color;
|
top: ($navicon-height / 2);
|
||||||
|
background: $text-color;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
-webkit-transition: 0.3s;
|
|
||||||
transition: 0.3s;
|
|
||||||
|
|
||||||
&:before,
|
&:before,
|
||||||
&:after {
|
&:after {
|
||||||
|
@ -338,9 +311,7 @@ body:hover .visually-hidden button {
|
||||||
left: 0;
|
left: 0;
|
||||||
width: $navicon-width;
|
width: $navicon-width;
|
||||||
height: $navicon-height;
|
height: $navicon-height;
|
||||||
background: $primary-color;
|
background: $text-color;
|
||||||
-webkit-transition: 0.3s;
|
|
||||||
transition: 0.3s;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
|
@ -353,43 +324,91 @@ body:hover .visually-hidden button {
|
||||||
}
|
}
|
||||||
|
|
||||||
.close .navicon {
|
.close .navicon {
|
||||||
/* hide the middle line*/
|
|
||||||
background: transparent;
|
background: transparent;
|
||||||
|
|
||||||
/* overlay the lines by setting both their top values to 0*/
|
/* overlay the lines by setting both their top values to 0*/
|
||||||
&:before,
|
&:before, &:after{
|
||||||
&:after {
|
|
||||||
-webkit-transform-origin: 50% 50%;
|
-webkit-transform-origin: 50% 50%;
|
||||||
-ms-transform-origin: 50% 50%;
|
-ms-transform-origin: 50% 50%;
|
||||||
transform-origin: 50% 50%;
|
transform-origin: 50% 50%;
|
||||||
top: 0;
|
top: 0;
|
||||||
width: $navicon-width;
|
width: $navicon-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* rotate the lines to form the x shape*/
|
/* rotate the lines to form the x shape*/
|
||||||
&:before {
|
&:before{
|
||||||
-webkit-transform: rotate3d(0, 0, 1, 45deg);
|
-webkit-transform: rotate3d(0,0,1,45deg);
|
||||||
transform: rotate3d(0, 0, 1, 45deg);
|
transform: rotate3d(0,0,1,45deg);
|
||||||
}
|
}
|
||||||
|
&:after{
|
||||||
|
-webkit-transform: rotate3d(0,0,1,-45deg);
|
||||||
|
transform: rotate3d(0,0,1,-45deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Langicons
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
.langicon {
|
||||||
|
position: relative;
|
||||||
|
width: $navicon-width;
|
||||||
|
display: inline-block;
|
||||||
|
background: transparent;
|
||||||
|
margin: auto;
|
||||||
|
color: $text-color;
|
||||||
|
|
||||||
|
&:before,
|
||||||
&:after {
|
&:after {
|
||||||
-webkit-transform: rotate3d(0, 0, 1, -45deg);
|
content: "";
|
||||||
transform: rotate3d(0, 0, 1, -45deg);
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
width: $navicon-width;
|
||||||
|
height: $navicon-height;
|
||||||
|
background: $text-color;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:before {
|
||||||
|
top: (-2 * $navicon-height);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
bottom: (-2 * $navicon-height);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.close .langicon {
|
||||||
|
/* hide the middle line*/
|
||||||
|
background: transparent;
|
||||||
|
|
||||||
|
.fa-language {
|
||||||
|
display: none;
|
||||||
|
-webkit-transition: 0.3s;
|
||||||
|
transition: 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* overlay the lines by setting both their top values to 0*/
|
||||||
|
&:before, &:after{
|
||||||
|
-webkit-transform-origin: 50% 50%;
|
||||||
|
-ms-transform-origin: 50% 50%;
|
||||||
|
transform-origin: 50% 50%;
|
||||||
|
width: $navicon-width;
|
||||||
|
display: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* rotate the lines to form the x shape*/
|
||||||
|
&:before{
|
||||||
|
-webkit-transform: rotate3d(0,0,1,45deg);
|
||||||
|
transform: rotate3d(0,0,1,45deg);
|
||||||
|
}
|
||||||
|
&:after{
|
||||||
|
top: (-2 * $navicon-height);
|
||||||
|
-webkit-transform: rotate3d(0,0,1,-45deg);
|
||||||
|
transform: rotate3d(0,0,1,-45deg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.greedy-nav__toggle:hover {
|
|
||||||
.navicon,
|
|
||||||
.navicon:before,
|
|
||||||
.navicon:after {
|
|
||||||
background: mix(#000, $primary-color, 25%);
|
|
||||||
}
|
|
||||||
|
|
||||||
&.close {
|
|
||||||
.navicon {
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Sticky, fixed to top content
|
Sticky, fixed to top content
|
||||||
|
@ -408,6 +427,7 @@ body:hover .visually-hidden button {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Wells
|
Wells
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
@ -422,6 +442,7 @@ body:hover .visually-hidden button {
|
||||||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Modals
|
Modals
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
@ -476,6 +497,7 @@ body:hover .visually-hidden button {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Footnotes
|
Footnotes
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
@ -488,9 +510,7 @@ body:hover .visually-hidden button {
|
||||||
.footnotes {
|
.footnotes {
|
||||||
color: mix(#fff, $gray, 25%);
|
color: mix(#fff, $gray, 25%);
|
||||||
|
|
||||||
ol,
|
ol, li, p {
|
||||||
li,
|
|
||||||
p {
|
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
font-size: $type-size-6;
|
font-size: $type-size-6;
|
||||||
}
|
}
|
||||||
|
@ -505,6 +525,7 @@ a.reversefootnote {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Required
|
Required
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
@ -514,14 +535,14 @@ a.reversefootnote {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Google Custom Search Engine
|
Google Custom Search Engine
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
.gsc-control-cse {
|
.gsc-control-cse {
|
||||||
table,
|
|
||||||
tr,
|
table, tr, td {
|
||||||
td {
|
|
||||||
border: 0; /* remove table borders widget */
|
border: 0; /* remove table borders widget */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -551,8 +572,21 @@ a.reversefootnote {
|
||||||
|
|
||||||
// full screen video fixes
|
// full screen video fixes
|
||||||
:-webkit-full-screen-ancestor {
|
:-webkit-full-screen-ancestor {
|
||||||
.masthead,
|
.masthead,
|
||||||
.page__footer {
|
.page__footer {
|
||||||
position: static;
|
position: static;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Ads
|
||||||
|
========================================================================== */
|
||||||
|
|
||||||
|
.adsbygoogle {
|
||||||
|
border-bottom: none;
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.adsbygoogle:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue