-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from adrianhall/0913
09/13 blog post
- Loading branch information
Showing
9 changed files
with
594 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,32 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "jekyll", "~> 4.3.3" | ||
gem "classifier-reborn" | ||
gem "csv" # No longer bundled with ruby | ||
gem "minimal-mistakes-jekyll", "~> 4.26.1" | ||
|
||
group :jekyll_plugins do | ||
gem "jekyll-algolia" | ||
gem "jekyll-archives" | ||
gem "jekyll-default-layout" | ||
gem "jekyll-feed" | ||
gem "jekyll-gist" | ||
gem "jekyll-include-cache" | ||
gem "jekyll-optional-front-matter" | ||
gem "jekyll-paginate-v2" | ||
gem "jekyll-relative-links" | ||
gem "jekyll-seo-tag" | ||
gem "jekyll-sitemap" | ||
gem "jekyll-titles-from-headings" | ||
gem "jekyll-toc" | ||
gem "jemoji" | ||
end | ||
|
||
platforms :mingw, :x64_mingw, :mswin, :jruby do | ||
gem "tzinfo", ">= 1", "< 3" | ||
gem "tzinfo-data" | ||
end | ||
|
||
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] | ||
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] | ||
source "https://rubygems.org" | ||
|
||
gem "jekyll", "~> 4.3.3" | ||
gem "classifier-reborn" | ||
gem "csv" # No longer bundled with ruby | ||
gem "faraday-retry" | ||
gem "minimal-mistakes-jekyll", "~> 4.26.1" | ||
|
||
group :jekyll_plugins do | ||
gem "jekyll-algolia" | ||
gem "jekyll-archives" | ||
gem "jekyll-default-layout" | ||
gem "jekyll-feed" | ||
gem "jekyll-gist" | ||
gem "jekyll-include-cache" | ||
gem "jekyll-optional-front-matter" | ||
gem "jekyll-paginate-v2" | ||
gem "jekyll-relative-links" | ||
gem "jekyll-seo-tag" | ||
gem "jekyll-sitemap" | ||
gem "jekyll-titles-from-headings" | ||
gem "jekyll-toc" | ||
gem "jemoji" | ||
end | ||
|
||
platforms :mingw, :x64_mingw, :mswin, :jruby do | ||
gem "tzinfo", ">= 1", "< 3" | ||
gem "tzinfo-data" | ||
end | ||
|
||
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] | ||
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
<!-- start custom head snippets --> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/icons/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/icons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/icons/favicon-16x16.png"> | ||
<link rel="manifest" href="/assets/icons/site.webmanifest"> | ||
<link rel="mask-icon" href="/assets/icons/safari-pinned-tab.svg" color="#5bbad5"> | ||
<link rel="shortcut icon" href="/assets/icons/favicon.ico"> | ||
<meta name="msapplication-TileColor" content="#da532c"> | ||
<meta name="msapplication-config" content="/assets/icons/browserconfig.xml"> | ||
<meta name="theme-color" content="#ffffff"> | ||
|
||
<link rel="stylesheet" href="{{ '/assets/css/site.css' | relative_url }}"> | ||
|
||
<!-- ShareThis --> | ||
<script type="text/javascript" src="https://platform-api.sharethis.com/js/sharethis.js#property=6664dc89bc91a90019554985&product=inline-share-buttons&source=platform" async="async"></script> | ||
<!-- end custom head snippets --> | ||
<!-- start custom head snippets --> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/icons/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/icons/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/icons/favicon-16x16.png"> | ||
<link rel="manifest" href="/assets/icons/site.webmanifest"> | ||
<link rel="mask-icon" href="/assets/icons/safari-pinned-tab.svg" color="#5bbad5"> | ||
<link rel="shortcut icon" href="/assets/icons/favicon.ico"> | ||
<meta name="msapplication-TileColor" content="#da532c"> | ||
<meta name="msapplication-config" content="/assets/icons/browserconfig.xml"> | ||
<meta name="theme-color" content="#ffffff"> | ||
|
||
<link rel="stylesheet" href="{{ '/assets/css/site.css' | relative_url }}"> | ||
|
||
<!-- ShareThis --> | ||
<script type="text/javascript" src="https://platform-api.sharethis.com/js/sharethis.js#property=6664dc89bc91a90019554985&product=inline-share-buttons&source=platform" async="async"></script> | ||
<!-- end custom head snippets --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{% if page.mermaid %} | ||
<script type="module"> | ||
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@11.2.0/+esm' | ||
mermaid.initialize({ | ||
startOnLoad:true, | ||
theme: 'dark' | ||
}); | ||
</script> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{% if site.footer_scripts %} | ||
{% for script in site.footer_scripts %} | ||
<script src="{{ script | relative_url }}"></script> | ||
{% endfor %} | ||
{% else %} | ||
<script src="{{ '/assets/js/main.min.js' | relative_url }}"></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 %} | ||
|
||
{% include analytics.html %} | ||
{% include /comments-providers/scripts.html %} | ||
{% include mermaid.html %} | ||
|
||
{% if site.after_footer_scripts %} | ||
{% for script in site.after_footer_scripts %} | ||
<script src="{{ script | relative_url }}"></script> | ||
{% endfor %} | ||
{% endif %} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.