diff --git a/.github/workflows/azure-static-web-apps-thankful-bush-037ae690f.yml b/.github/workflows/azure-static-web-apps-thankful-bush-037ae690f.yml index 3eb4cd3..661be1a 100644 --- a/.github/workflows/azure-static-web-apps-thankful-bush-037ae690f.yml +++ b/.github/workflows/azure-static-web-apps-thankful-bush-037ae690f.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest name: Build and Deploy Job steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod diff --git a/.gitignore b/.gitignore index 2f58497..351f4db 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,11 @@ public/ *.lock *.DS_Store -_vendor/ \ No newline at end of file +_vendor/ + +# Resources generated by Hugo +resources/_gen/ + +# Temporary files +*.tar.gz +LICENSE \ No newline at end of file diff --git a/.gitmodules b/.gitmodules index 7e2efd2..ffab4db 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "themes/blowfish"] path = themes/blowfish - url = https://github.com/nunocoracao/blowfish + url = https://github.com/nunocoracao/blowfish.git diff --git a/README.md b/README.md index 6f84c0d..4ff574c 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,241 @@ +Hugo -[![Actions Status](https://github.com/AlanTanner/PersonalSite/workflows/Azure%20Static%20Web%20Apps%20CI/CD/badge.svg)](https://github.com/AlanTanner/PersonalSite/actions) +A Fast and Flexible Static Site Generator built with love by [bep](https://github.com/bep), [spf13](https://spf13.com/) and [friends](https://github.com/gohugoio/hugo/graphs/contributors) in [Go](https://go.dev/). -# PersonalSite -This is the repo for my hugo blog or at [alanctanner.com](https://www.alanctanner.com). +[Website](https://gohugo.io) | +[Forum](https://discourse.gohugo.io) | +[Documentation](https://gohugo.io/getting-started/) | +[Installation Guide](https://gohugo.io/getting-started/installing/) | +[Contribution Guide](CONTRIBUTING.md) | +[Twitter](https://twitter.com/gohugoio) -It is currently using the [Blowfish](https://github.com/nunocoracao/blowfish) theme created by [Nuno Coração](https://github.com/nunocoracao). +[![GoDoc](https://godoc.org/github.com/gohugoio/hugo?status.svg)](https://godoc.org/github.com/gohugoio/hugo) +[![Tests on Linux, MacOS and Windows](https://github.com/gohugoio/hugo/workflows/Test/badge.svg)](https://github.com/gohugoio/hugo/actions?query=workflow%3ATest) +[![Go Report Card](https://goreportcard.com/badge/github.com/gohugoio/hugo)](https://goreportcard.com/report/github.com/gohugoio/hugo) -# How To -I used this [Microsoft Doc](https://docs.microsoft.com/en-us/azure/static-web-apps/publish-hugo) to get everything up and running. +* [Overview](#overview) +* [Banner Sponsors](#banner-sponsors) +* [Supported Architectures](#supported-architectures) +* [Choose How to Install](#choose-how-to-install) + * [Install Hugo as Your Site Generator (Binary Install)](#install-hugo-as-your-site-generator-binary-install) + * [Build and Install the Binary from Source (Using the Go toolchain)](#build-and-install-the-binary-from-source-using-the-go-toolchain) +* [The Hugo Documentation](#the-hugo-documentation) +* [Contributing to Hugo](#contributing-code-to-hugo) +* [Dependencies](#dependencies) + +## Overview + +Hugo is a static HTML and CSS website generator written in [Go](https://go.dev/). +It is optimized for speed, ease of use, and configurability. +Hugo takes a directory with content and templates and renders them into a full HTML website. + +Hugo relies on Markdown files with front matter for metadata, and you can run Hugo from any directory. +This works well for shared hosts and other systems where you don’t have a privileged account. + +Hugo renders a typical website of moderate size in a fraction of a second. +A good rule of thumb is that each piece of content renders in around 1 millisecond. + +Hugo is designed to work well for any kind of website including blogs, tumbles, and docs. + +## Banner Sponsors +

 

+

+ Linode           +          ButterCMS +              +your company? +

+

 

+ +## Supported Architectures + +Currently, we provide pre-built Hugo binaries for Windows, Linux, FreeBSD, NetBSD, DragonFly BSD, OpenBSD, macOS (Darwin), and [Android](https://gist.github.com/bep/a0d8a26cf6b4f8bc992729b8e50b480b) for x64, i386 and ARM architectures. + +Hugo may also be compiled from source wherever the Go compiler tool chain can run, e.g. for other operating systems including Plan 9 and Solaris. + +**Complete documentation is available at [Hugo Documentation](https://gohugo.io/getting-started/).** + +## Choose How to Install + +If you want to use Hugo as your site generator, simply install the Hugo binaries. + +To contribute to the Hugo source code or documentation, you should [fork the Hugo GitHub project](https://github.com/gohugoio/hugo#fork-destination-box) and clone it to your local machine. + +Finally, you can install the Hugo source code with `go`, build the binaries yourself, and run Hugo that way. +Building the binaries is an easy task for an experienced `go` getter. + +### Install Hugo as Your Site Generator (Binary Install) + +Use the [installation instructions in the Hugo documentation](https://gohugo.io/getting-started/installing/). + +### Build and Install the Binary from Source (Using the Go toolchain) + +#### Prerequisite Tools + +* [Go (we test it with the last 2 major versions; but note that Hugo 0.95.0 only builds with >= Go 1.18.)](https://golang.org/dl/) + +#### Fetch from GitHub + +To fetch, build and install from the Github source: + +```bash +go install github.com/gohugoio/hugo@latest +``` + +If you want to compile with Sass/SCSS support use `--tags extended` and make sure `CGO_ENABLED=1` is set in your go environment. If you don't want to have CGO enabled, you may use the following command to temporarily enable CGO only for hugo compilation: + +```bash +CGO_ENABLED=1 go install --tags extended github.com/gohugoio/hugo@latest +``` + +## The Hugo Documentation + +The Hugo documentation now lives in its own repository, see https://github.com/gohugoio/hugoDocs. But we do keep a version of that documentation as a `git subtree` in this repository. To build the sub folder `/docs` as a Hugo site, you need to clone this repo: + +```bash +git clone git@github.com:gohugoio/hugo.git +``` +## Contributing code to Hugo + +For a complete guide to contributing to Hugo, see the [Contribution Guide](CONTRIBUTING.md). + +We welcome contributions to Hugo of any kind including documentation, themes, +organization, tutorials, blog posts, bug reports, issues, feature requests, +feature implementations, pull requests, answering questions on the forum, +helping to manage issues, etc. + +The Hugo community and maintainers are [very active](https://github.com/gohugoio/hugo/pulse/monthly) and helpful, and the project benefits greatly from this activity. + +## Asking Support Questions + +We have an active [discussion forum](https://discourse.gohugo.io) where users and developers can ask questions. +Please don't use the GitHub issue tracker to ask questions. + +## Reporting Issues + +If you believe you have found a defect in Hugo or its documentation, use +the GitHub issue tracker to report the problem to the Hugo maintainers. +If you're not sure if it's a bug or not, start by asking in the [discussion forum](https://discourse.gohugo.io). +When reporting the issue, please provide the version of Hugo in use (`hugo version`). + +## Dependencies + +Hugo stands on the shoulder of many great open source libraries. + +If you run `hugo env -v` you will get a complete and up to date list. + +In Hugo 0.100.1 that list is, in lexical order: + +``` +cloud.google.com/go/compute="v1.6.1" +cloud.google.com/go/iam="v0.3.0" +cloud.google.com/go/storage="v1.22.0" +cloud.google.com/go="v0.101.0" +github.com/Azure/azure-pipeline-go="v0.2.3" +github.com/Azure/azure-storage-blob-go="v0.14.0" +github.com/Azure/go-autorest/autorest/adal="v0.9.15" +github.com/Azure/go-autorest/autorest/date="v0.3.0" +github.com/Azure/go-autorest/autorest="v0.11.20" +github.com/Azure/go-autorest/logger="v0.2.1" +github.com/Azure/go-autorest/tracing="v0.6.0" +github.com/BurntSushi/locker="v0.0.0-20171006230638-a6e239ea1c69" +github.com/PuerkitoBio/purell="v1.1.1" +github.com/PuerkitoBio/urlesc="v0.0.0-20170810143723-de5bf2ad4578" +github.com/alecthomas/chroma="v0.10.0" +github.com/armon/go-radix="v1.0.0" +github.com/aws/aws-sdk-go-v2/config="v1.7.0" +github.com/aws/aws-sdk-go-v2/credentials="v1.4.0" +github.com/aws/aws-sdk-go-v2/feature/ec2/imds="v1.5.0" +github.com/aws/aws-sdk-go-v2/internal/ini="v1.2.2" +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url="v1.3.0" +github.com/aws/aws-sdk-go-v2/service/sso="v1.4.0" +github.com/aws/aws-sdk-go-v2/service/sts="v1.7.0" +github.com/aws/aws-sdk-go-v2="v1.9.0" +github.com/aws/aws-sdk-go="v1.43.5" +github.com/aws/smithy-go="v1.8.0" +github.com/bep/clock="v0.3.0" +github.com/bep/debounce="v1.2.0" +github.com/bep/gitmap="v1.1.2" +github.com/bep/goat="v0.5.0" +github.com/bep/godartsass="v0.14.0" +github.com/bep/golibsass="v1.1.0" +github.com/bep/gowebp="v0.1.0" +github.com/bep/overlayfs="v0.6.0" +github.com/bep/tmc="v0.5.1" +github.com/clbanning/mxj/v2="v2.5.5" +github.com/cli/safeexec="v1.0.0" +github.com/cpuguy83/go-md2man/v2="v2.0.1" +github.com/disintegration/gift="v1.2.1" +github.com/dlclark/regexp2="v1.4.0" +github.com/dustin/go-humanize="v1.0.0" +github.com/evanw/esbuild="v0.14.42" +github.com/frankban/quicktest="v1.14.3" +github.com/fsnotify/fsnotify="v1.5.4" +github.com/getkin/kin-openapi="v0.94.0" +github.com/ghodss/yaml="v1.0.0" +github.com/go-openapi/jsonpointer="v0.19.5" +github.com/go-openapi/swag="v0.19.5" +github.com/gobuffalo/flect="v0.2.5" +github.com/gobwas/glob="v0.2.3" +github.com/gohugoio/go-i18n/v2="v2.1.3-0.20210430103248-4c28c89f8013" +github.com/gohugoio/locales="v0.14.0" +github.com/gohugoio/localescompressed="v1.0.1" +github.com/golang-jwt/jwt/v4="v4.0.0" +github.com/golang/groupcache="v0.0.0-20210331224755-41bb18bfe9da" +github.com/golang/protobuf="v1.5.2" +github.com/google/go-cmp="v0.5.8" +github.com/google/uuid="v1.3.0" +github.com/google/wire="v0.5.0" +github.com/googleapis/gax-go/v2="v2.3.0" +github.com/googleapis/go-type-adapters="v1.0.0" +github.com/gorilla/websocket="v1.5.0" +github.com/hairyhenderson/go-codeowners="v0.2.3-0.20201026200250-cdc7c0759690" +github.com/inconshreveable/mousetrap="v1.0.0" +github.com/jdkato/prose="v1.2.1" +github.com/jmespath/go-jmespath="v0.4.0" +github.com/kr/pretty="v0.3.0" +github.com/kr/text="v0.2.0" +github.com/kyokomi/emoji/v2="v2.2.9" +github.com/mailru/easyjson="v0.0.0-20190626092158-b2ccc519800e" +github.com/mattn/go-ieproxy="v0.0.1" +github.com/mattn/go-isatty="v0.0.14" +github.com/mattn/go-runewidth="v0.0.9" +github.com/mitchellh/hashstructure="v1.1.0" +github.com/mitchellh/mapstructure="v1.5.0" +github.com/muesli/smartcrop="v0.3.0" +github.com/niklasfasching/go-org="v1.6.2" +github.com/olekukonko/tablewriter="v0.0.5" +github.com/pelletier/go-toml/v2="v2.0.0-beta.7.0.20220408132554-2377ac4bc04c" +github.com/rogpeppe/go-internal="v1.8.1" +github.com/russross/blackfriday/v2="v2.1.0" +github.com/rwcarlsen/goexif="v0.0.0-20190401172101-9e8deecbddbd" +github.com/sanity-io/litter="v1.5.5" +github.com/sass/libsass="3.6.5" +github.com/spf13/afero="v1.8.2" +github.com/spf13/cast="v1.5.0" +github.com/spf13/cobra="v1.4.0" +github.com/spf13/fsync="v0.9.0" +github.com/spf13/jwalterweatherman="v1.1.0" +github.com/spf13/pflag="v1.0.5" +github.com/tdewolff/minify/v2="v2.11.5" +github.com/tdewolff/parse/v2="v2.5.31" +github.com/webmproject/libwebp="v1.2.0" +github.com/yuin/goldmark="v1.4.12" +go.opencensus.io="v0.23.0" +go.uber.org/atomic="v1.9.0" +gocloud.dev="v0.24.0" +golang.org/x/crypto="v0.0.0-20211108221036-ceb1ce70b4fa" +golang.org/x/image="v0.0.0-20211028202545-6944b10bf410" +golang.org/x/net="v0.0.0-20220425223048-2871e0cb64e4" +golang.org/x/oauth2="v0.0.0-20220411215720-9780585627b5" +golang.org/x/sync="v0.0.0-20210220032951-036812b2e83c" +golang.org/x/sys="v0.0.0-20220422013727-9388b58f7150" +golang.org/x/text="v0.3.7" +golang.org/x/tools="v0.1.10" +golang.org/x/xerrors="v0.0.0-20220411194840-2f41105eb62f" +google.golang.org/api="v0.76.0" +google.golang.org/genproto="v0.0.0-20220426171045-31bebdecfb46" +google.golang.org/grpc="v1.46.0" +google.golang.org/protobuf="v1.28.0" +gopkg.in/yaml.v2="v2.4.0" +``` diff --git a/assets/audio/BenifitsOfBlogNarration.mp3 b/assets/audio/BenifitsOfBlogNarration.mp3 deleted file mode 100644 index 73a3431..0000000 Binary files a/assets/audio/BenifitsOfBlogNarration.mp3 and /dev/null differ diff --git a/assets/audio/BuildWithHugoNarration.mp3 b/assets/audio/BuildWithHugoNarration.mp3 deleted file mode 100644 index 378214c..0000000 Binary files a/assets/audio/BuildWithHugoNarration.mp3 and /dev/null differ diff --git a/assets/audio/HelloWorldNarration.mp3 b/assets/audio/HelloWorldNarration.mp3 deleted file mode 100644 index db5d02d..0000000 Binary files a/assets/audio/HelloWorldNarration.mp3 and /dev/null differ diff --git a/assets/audio/LastPostWasALieNarration.mp3 b/assets/audio/LastPostWasALieNarration.mp3 deleted file mode 100644 index 911362f..0000000 Binary files a/assets/audio/LastPostWasALieNarration.mp3 and /dev/null differ diff --git a/config/_default/config.toml b/config/_default/config.toml index aaa315b..3775198 100644 --- a/config/_default/config.toml +++ b/config/_default/config.toml @@ -18,8 +18,12 @@ summaryLength = 0 buildDrafts = false buildFuture = false +timeout = "120s" + googleAnalytics = "G-ZK3JY5P41D" +ignoreErrors = ["error-remote-getjson"] + [imaging] anchor = 'Center' diff --git a/config/_default/module.toml b/config/_default/module.toml deleted file mode 100644 index 2f6a8c2..0000000 --- a/config/_default/module.toml +++ /dev/null @@ -1,2 +0,0 @@ -[[imports]] -path = "github.com/nunocoracao/blowfish/v2" \ No newline at end of file diff --git a/content/posts/Benefit_of_Blog/index.md b/content/posts/Benefit_of_Blog/index.md index 5cd3fe4..14fe960 100644 --- a/content/posts/Benefit_of_Blog/index.md +++ b/content/posts/Benefit_of_Blog/index.md @@ -33,4 +33,3 @@ if you want to partner up with other developers on projects or get feedback from ## Conclusion Creating a personal blog as a software developer can open up all sorts of doors that would otherwise be unavailable without one. Not only does it provide an online platform where people can see your work first hand, but it also allows you stay current with industry trends while networking with other professionals in the field–all at the same time! That’s why I decided to create my own personal blog; it has opened up so many opportunities that I wouldn't have had access too otherwise. If you're looking for ways to further develop your career in software development, I highly recommend considering creating your own personal blog! -{{< audio src="/audio/BenifitsOfBlogNarration.mp3" caption="Narration is AI generated with [llElevenLabs](https://beta.elevenlabs.io/)" >}} \ No newline at end of file diff --git a/content/posts/Built_with_Hugo/index.md b/content/posts/Built_with_Hugo/index.md index 2544401..6b70e3e 100644 --- a/content/posts/Built_with_Hugo/index.md +++ b/content/posts/Built_with_Hugo/index.md @@ -45,6 +45,4 @@ Compared to my experience in the 2020 Preview, this process is so simple with ju Lastly, you'll likely want to register a domain name for your Azure site. Now that Azure Static Pages is no longer in preview mode, it's easier than ever! You will have a lot of options for registering and setting up the domain, so check out the [Microsoft documentation](https://learn.microsoft.com/en-us/azure/static-web-apps/custom-domain) for detail on the perfect solution for you. ## Wrap Up -Overall, setting up my website with Hugo and Azure was a great experience despite all the complexities back when Azure Static Pages were in Preview in 2020. Through this experience, I gained invaluable insight into the capabilities of both Github and Azure. These comprehensive platforms offer a wealth of features to help streamline processes and increase productivity. Finally, I'd encourage everyone to give creating their website too. Crafting and imagining innovative concepts for my website has been an immensely enjoyable experience for me, and it can be for you too. Stay Tuned! - -{{< audio src="/audio/BuildWithHugoNarration.mp3" caption="Narration is AI generated with [llElevenLabs](https://beta.elevenlabs.io/)" >}} \ No newline at end of file +Overall, setting up my website with Hugo and Azure was a great experience despite all the complexities back when Azure Static Pages were in Preview in 2020. Through this experience, I gained invaluable insight into the capabilities of both Github and Azure. These comprehensive platforms offer a wealth of features to help streamline processes and increase productivity. Finally, I'd encourage everyone to give creating their website too. Crafting and imagining innovative concepts for my website has been an immensely enjoyable experience for me, and it can be for you too. Stay Tuned! \ No newline at end of file diff --git a/content/posts/Hello-World/index.md b/content/posts/Hello-World/index.md index a9110e3..f8aa573 100644 --- a/content/posts/Hello-World/index.md +++ b/content/posts/Hello-World/index.md @@ -18,6 +18,4 @@ It only took 2116 days since I posted that on twitter, but I finally created a p I do not know how often I will post, but there is much to learn, and I want to record my experiences! -My next post will be about the technology I used to create this blog. Stay tuned! - -{{< audio src="/audio/HelloWorldNarration.mp3" caption="Narration is AI generated with [llElevenLabs](https://beta.elevenlabs.io/)" >}} \ No newline at end of file +My next post will be about the technology I used to create this blog. Stay tuned! \ No newline at end of file diff --git a/content/posts/Last_Post_Was_A_Lie/index.md b/content/posts/Last_Post_Was_A_Lie/index.md index 17f92f8..10c885a 100644 --- a/content/posts/Last_Post_Was_A_Lie/index.md +++ b/content/posts/Last_Post_Was_A_Lie/index.md @@ -41,8 +41,4 @@ The fun thing is Jasper, and all other ML algos, are confidently incorrect. Ask ## Bye For Now So my first month playing with Jasper has been really fun. I have had a lot of emotions using it, from amazement, when Jasper writes something that sounds completely human, to cracking up laughing at how ridiculously wrong it can be. I am not sure if I would be bothered to restart this blog without the assistance of Jasper. I also have only scratched the surface of the capabilities Jasper has to offer, so I hope I can find more tools in Jasper to become a better and faster writer. I will be sure to give a few updates on what I end up useing Jasper for in the future. Stay Tuned! - -{{< audio src="/audio/LastPostWasALieNarration.mp3" caption="Narration is AI generated with [llElevenLabs](https://beta.elevenlabs.io/)" >}} - - If you want to try Jasper for yourself click [here](https://jasper.ai?utm_source=partner&fpr=alan51) to use my affiliate code to receive 10,000 free words. \ No newline at end of file diff --git a/go.mod b/go.mod index fb03d4e..63be138 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module github.com/alantanner/PersonalSite go 1.19 -require github.com/nunocoracao/blowfish/v2 v2.29.0 // indirect +require github.com/nunocoracao/blowfish/v2 v2.80.0 // indirect diff --git a/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.content b/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.content deleted file mode 100644 index 2fca07e..0000000 --- a/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.content +++ /dev/null @@ -1,5 +0,0 @@ -@charset "UTF-8";/*!normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css*/html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.chroma{color:#eee;background-color:#2c3e50}.chroma .err{color:#960050;background-color:#1e0010}.chroma .lntd{vertical-align:top;padding:0;margin:0;border:0}.chroma .lntable{border-spacing:0;padding:0;margin:0;border:0;width:auto;overflow:auto;display:block}.chroma .hl{display:block;width:100%;background-color:#ffc}.chroma .lnt{margin-right:.4em;padding:0 .4em}.chroma .ln{margin-right:.4em;padding:0 .4em}.chroma .k{color:#66d9ef}.chroma .kc{color:#66d9ef}.chroma .kd{color:#66d9ef}.chroma .kn{color:#f92672}.chroma .kp{color:#66d9ef}.chroma .kr{color:#66d9ef}.chroma .kt{color:#66d9ef}.chroma .na{color:#a6e22e}.chroma .nc{color:#a6e22e}.chroma .no{color:#66d9ef}.chroma .nd{color:#a6e22e}.chroma .ne{color:#a6e22e}.chroma .nf{color:#a6e22e}.chroma .nx{color:#a6e22e}.chroma .nt{color:#f92672}.chroma .l{color:#ae81ff}.chroma .ld{color:#e6db74}.chroma .s{color:#e6db74}.chroma .sa{color:#e6db74}.chroma .sb{color:#e6db74}.chroma .sc{color:#e6db74}.chroma .dl{color:#e6db74}.chroma .sd{color:#e6db74}.chroma .s2{color:#e6db74}.chroma .se{color:#ae81ff}.chroma .sh{color:#e6db74}.chroma .si{color:#e6db74}.chroma .sx{color:#e6db74}.chroma .sr{color:#e6db74}.chroma .s1{color:#e6db74}.chroma .ss{color:#e6db74}.chroma .m{color:#ae81ff}.chroma .mb{color:#ae81ff}.chroma .mf{color:#ae81ff}.chroma .mh{color:#ae81ff}.chroma .mi{color:#ae81ff}.chroma .il{color:#ae81ff}.chroma .mo{color:#ae81ff}.chroma .o{color:#f92672}.chroma .ow{color:#f92672}.chroma .c{color:#75715e}.chroma .ch{color:#75715e}.chroma .cm{color:#75715e}.chroma .c1{color:#75715e}.chroma .cs{color:#75715e}.chroma .cp{color:#75715e}.chroma .cpf{color:#75715e}.chroma .gd{color:#f92672}.chroma .ge{font-style:italic}.chroma .gi{color:#a6e22e}.chroma .gs{font-weight:700}.chroma .gu{color:#75715e}/*!* animate.css - https://animate.style/ -* Version - 4.1.0 -* Licensed under the MIT license - http://opensource.org/licenses/MIT -* -* Copyright (c) 2020 Animate.css*/:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animated{animation-duration:1s;animation-duration:var(--animate-duration);animation-fill-mode:both}.animated.infinite{animation-iteration-count:infinite}.animated.repeat-1{animation-iteration-count:1;animation-iteration-count:var(--animate-repeat)}.animated.repeat-2{animation-iteration-count:2;animation-iteration-count:calc(var(--animate-repeat)*2)}.animated.repeat-3{animation-iteration-count:3;animation-iteration-count:calc(var(--animate-repeat)*3)}.animated.delay-1s{animation-delay:1s;animation-delay:var(--animate-delay)}.animated.delay-2s{animation-delay:2s;animation-delay:calc(var(--animate-delay)*2)}.animated.delay-3s{animation-delay:3s;animation-delay:calc(var(--animate-delay)*3)}.animated.delay-4s{animation-delay:4s;animation-delay:calc(var(--animate-delay)*4)}.animated.delay-5s{animation-delay:5s;animation-delay:calc(var(--animate-delay)*5)}.animated.faster{animation-duration:.5s;animation-duration:calc(var(--animate-duration)/2)}.animated.fast{animation-duration:.8s;animation-duration:calc(var(--animate-duration)*.8)}.animated.slow{animation-duration:2s;animation-duration:calc(var(--animate-duration)*2)}.animated.slower{animation-duration:3s;animation-duration:calc(var(--animate-duration)*3)}@media(prefers-reduced-motion:reduce),print{.animated{animation-duration:1ms!important;transition-duration:1ms!important;animation-iteration-count:1!important}.animated[class*=Out]{opacity:0}}@keyframes bounce{0%,20%,53%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)}40%,43%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-30px,0)scaleY(1.1)}70%{animation-timing-function:cubic-bezier(.755,.05,.855,.06);transform:translate3d(0,-15px,0)scaleY(1.05)}80%{transition-timing-function:cubic-bezier(.215,.61,.355,1);transform:translateZ(0)scaleY(.95)}90%{transform:translate3d(0,-4px,0)scaleY(1.02)}}.bounce{animation-name:bounce;transform-origin:center bottom}@keyframes bounceInRight{0%,60%,75%,90%,to{animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;transform:translate3d(3000px,0,0)scaleX(3)}60%{opacity:1;transform:translate3d(-25px,0,0)scaleX(1)}75%{transform:translate3d(10px,0,0)scaleX(.98)}90%{transform:translate3d(-5px,0,0)scaleX(.995)}to{transform:translateZ(0)}}.bounceInRight{animation-name:bounceInRight}@keyframes bounceOutRight{20%{opacity:1;transform:translate3d(-20px,0,0)scaleX(.9)}to{opacity:0;transform:translate3d(2000px,0,0)scaleX(2)}}.bounceOutRight{animation-name:bounceOutRight}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{animation-name:fadeIn}@keyframes slideInUp{0%{transform:translate3d(0,100%,0);visibility:visible}to{transform:translateZ(0)}}.slideInUp{animation-name:slideInUp}@keyframes slideOutDown{0%{transform:translateZ(0)}to{visibility:hidden;transform:translate3d(0,100%,0)}}.slideOutDown{animation-name:slideOutDown}::-webkit-scrollbar{width:8px;height:8px;background:#2c3e50}::-webkit-scrollbar-thumb{background:#888}::-webkit-scrollbar-thumb:hover{background:#e8eef2}html{background:#494f5c;line-height:1.6;letter-spacing:.06em;scroll-behavior:smooth}body,button,input,select,textarea{color:#e8eef2;font-family:trebuchet ms,Verdana,verdana ref,segoe ui,Candara,lucida grande,lucida sans unicode,lucida sans,Tahoma,sans-serif}pre,code,pre tt{font-family:Consolas,andale mono wt,andale mono,Menlo,Monaco,lucida console,lucida sans typewriter,dejavu sans mono,bitstream vera sans mono,liberation mono,nimbus mono l,courier new,Courier,yahei consolas hybrid,monospace,segoe ui emoji,pingfang sc,microsoft yahei}pre{padding:.7em 1.1em;overflow:auto;font-size:.9em;line-height:1.5;letter-spacing:normal;white-space:pre;color:#eee;background:#2c3e50;border-radius:4px}pre code{padding:0;margin:0;background:#2c3e50}code{color:#eee;background:#7d828a;border-radius:3px;padding:0 3px;margin:0 4px;word-wrap:break-word;letter-spacing:normal}blockquote{border-left:.25em solid;margin:1em;padding:0 1em;font-style:italic}blockquote cite{font-weight:700;font-style:normal}blockquote cite::before{content:"—— "}a{color:#e8eef2;text-decoration:none;border:none;transition-property:color;transition-duration:.4s;transition-timing-function:ease-out}a:hover{color:#fff;text-shadow:0 0 1px #fff}hr{opacity:.2;border-width:0 0 5px;border-style:dashed;background:0 0;width:50%;margin:1.8em auto}table{border-collapse:collapse;border-spacing:0;empty-cells:show;width:100%;max-width:100%}table th,table td{padding:1.5%;border:1px solid}table th{font-weight:700;vertical-align:bottom}.section-inner{margin:0 auto;max-width:1200px;width:93%}.thin{max-width:720px;margin:auto}.feather{display:inline-block;vertical-align:-.125em;width:1em;height:1em}.sub-menu{font-size:.7em}.desktop-only,.desktop-only-ib{display:none}.highlight{position:relative}.highlight pre{padding-right:75px}.highlight-copy-btn{position:absolute;bottom:7px;right:7px;border:0;border-radius:4px;padding:1px;font-size:.7em;line-height:1.8;color:#fff;background-color:#777;opacity:.6;min-width:55px;text-align:center}.highlight-copy-btn:hover{background-color:#666}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;clip-path:none;color:#21759b;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}#site-header{position:fixed;z-index:1;bottom:0;width:100%;box-sizing:border-box;box-shadow:-1px -2px 3px rgba(0,0,0,.45);background-color:#3b3e48;animation-duration:.3s}.hdr-wrapper{display:flex;justify-content:space-between;align-items:center;padding:.5em 0;font-size:1.2rem}.hdr-wrapper .site-branding{display:inline-block;margin-right:.8em;font-size:1.2em}.hdr-wrapper .site-nav{display:inline-block;font-size:1.1em;opacity:.8}.hdr-wrapper .site-nav .has-children{padding-right:.5em;border-right:2px solid #7d828a}.hdr-wrapper .site-nav .sub-menu>a{margin-left:.3em}.hdr-wrapper .site-nav a{margin-left:.8em}.hdr-icons{font-size:1.2em}.hdr-social{display:inline-block;margin-left:.6em}.hdr-social>a{margin-left:.4em}.hdr-btn{border:none;background:0 0;padding:0;margin-left:.4em;cursor:pointer}#menu-btn{display:none;margin-left:.6em;cursor:pointer}#mobile-menu{position:fixed;bottom:4.8em;right:1.5em;display:none;padding:.6em 1.8em;z-index:1;box-sizing:border-box;box-shadow:-1px -2px 3px rgba(0,0,0,.45);background-color:#3b3e48}#mobile-menu ul{list-style:none;margin:0;padding:0;line-height:2;font-size:1.2em}#site-footer{text-align:center;font-size:.9em;margin-bottom:96px;margin-top:64px}#site-footer p{margin:0}#spotlight{display:flex;min-height:100vh;flex-direction:column;align-items:center;justify-content:center;max-width:93%;margin:auto;font-size:1.5rem}#spotlight.error-404{flex-direction:row;line-height:normal}p.img-404{margin:0}p.img-404 svg{width:180px;max-width:100%;height:auto}.banner-404{margin-left:2em}.banner-404 h1{font-size:3em;margin:.5rem 0}.banner-404 p{margin-top:0}.banner-404 .btn-404{font-size:.8em}.banner-404 .btn-404 a{display:inline-block;border:2px solid #e8eef2;border-radius:5px;padding:5px;transition-property:color,border-color}.banner-404 .btn-404 a:first-child{margin-right:1em}.banner-404 .btn-404 a:hover{border-color:#fff}.banner-404 .btn-404 a svg{margin-right:.5em}#home-center{display:flex;flex-grow:1;flex-direction:column;justify-content:center}#home-title{margin:0;text-align:center}#home-subtitle{margin-top:0;margin-bottom:1.5em;text-align:center;line-height:normal;font-size:.7em;font-style:italic;opacity:.9}#home-social{font-size:1.4em;text-align:center;opacity:.8}#home-social a{margin:0 .2em}#home-nav{opacity:.8}#home-nav a{display:block;text-align:center;margin-top:.5em}#home-footer{text-align:center;font-size:.6em;line-height:normal;opacity:.6}#home-footer p{margin-top:0}.posts-group{display:flex;margin-bottom:1.9em;line-height:normal}.posts-group .post-year{padding-top:6px;margin-right:1.8em;font-size:1.6em;opacity:.6}.posts-group .post-year:hover{text-decoration:underline;cursor:pointer}.posts-group .posts-list{flex-grow:1;margin:0;padding:0;list-style:none}.posts-group .post-item{border-bottom:1px #7d828a dashed}.posts-group .post-item a{display:flex;justify-content:space-between;align-items:baseline;padding:12px 0}.posts-group .post-day{flex-shrink:0;margin-left:1em;opacity:.6}.bg-img{width:100vw;height:100vh;opacity:.03;z-index:-1;position:fixed;top:0;background-attachment:fixed;background-repeat:no-repeat;background-size:cover;background-position:50%;transition:opacity .5s}.show-bg-img{z-index:100;opacity:1;cursor:pointer}.post-header{margin-top:1.2em;line-height:normal}.post-header .post-meta{font-size:.9em;letter-spacing:normal;opacity:.6}.post-header h1{margin-top:.1em}hr.post-end{width:50%;margin-top:1.6em;margin-bottom:.8em;margin-left:0;border-style:solid;border-bottom-width:4px}.content a{word-wrap:break-word;border:none;box-shadow:inset 0 -4px #018574;transition-property:box-shadow;transition-duration:.1s}.content a:hover{box-shadow:inset 0 -1em #018574}.content figure{max-width:100%;height:auto;margin:0;text-align:center}.content figure p{font-size:.8em;font-style:italic;opacity:.6}.content figure.left{float:left;margin-right:1.5em;max-width:50%}.content figure.right{float:right;margin-left:1.5em;max-width:50%}.content figure.big{max-width:100vw}.content img{display:block;max-width:100%;height:auto;margin:auto;border-radius:4px}.content ul,.content ol{padding:0;margin-left:1.8em}.content a.anchor{float:left;margin-left:-20px;padding-right:6px;box-shadow:none;opacity:.8}.content a.anchor:hover{background:0 0;color:#018574;opacity:1}.content a.anchor svg{display:inline-block;width:14px;height:14px;vertical-align:baseline;visibility:hidden}.content a.anchor:focus svg{visibility:visible}.content h1:hover a.anchor svg,.content h2:hover a.anchor svg,.content h3:hover a.anchor svg,.content h4:hover a.anchor svg,.content h5:hover a.anchor svg,.content h6:hover a.anchor svg{visibility:visible}.footnotes{font-size:.85em}.footnotes a{box-shadow:none;text-decoration:underline;transition-property:color}.footnotes a:hover{background:0 0}.footnotes a.footnote-backref{text-decoration:none}.footnotes ol{line-height:1.8}a.footnote-ref{box-shadow:none;text-decoration:none;padding:2px;border-radius:2px;background-color:#2c3e50}a.footnote-ref:hover{box-shadow:none;background-color:#018574;transition-property:background-color}.post-info{font-size:.8rem;line-height:normal;opacity:.6}.post-info p{margin:.8em 0}.post-info a:hover{border-bottom:1px solid #018574}.post-info svg{margin-right:.8em}.post-info .tag{margin-right:.5em}.post-info .tag::before{content:"#"}#toc{position:fixed;left:50%;top:0;display:none}.toc-title{margin-left:1em;margin-bottom:.5em;font-size:.8em;font-weight:700}#TableOfContents{font-size:.8em;opacity:.6}#TableOfContents ul{padding-left:1em;margin:0}#TableOfContents>ul{list-style-type:none}#TableOfContents>ul ul ul{font-size:.9em}#TableOfContents a:hover{border-bottom:#018574 1px solid}.post-nav{display:flex;justify-content:space-between;margin-top:1.5em;margin-bottom:2.5em;font-size:1.2em}.post-nav a{flex-basis:50%;flex-grow:1}.post-nav .next-post{text-align:left;padding-right:5px}.post-nav .prev-post{text-align:right;padding-left:5px}.post-nav .post-nav-label{font-size:.8em;opacity:.8;text-transform:uppercase}.related-posts{padding:.8em;margin-top:1.5em;font-size:.8rem;border:3px dashed rgba(255,255,255,.2);border-radius:5px}.related-posts h2{margin:0;line-height:normal}.related-posts ul{margin-top:.5em;margin-bottom:0}@media(min-width:800px){.site-main{margin-top:3em}hr.post-end{width:40%}}@media(min-width:960px){.site-main{margin-top:6em}}@media(min-width:1300px){.site-main{margin-top:8em}.desktop-only,#toc.show-toc{display:block}.desktop-only-ib{display:inline-block}figure.left{margin-left:-240px}figure.left p{text-align:left}figure.right{margin-right:-240px}figure.right p{text-align:right}figure.big{width:1200px;margin-left:-240px}hr.post-end{width:30%}#toc{top:13em;margin-left:370px;max-width:220px}}@media(min-width:1800px){.site-main{margin-top:10em}.section-inner{max-width:1600px}.thin{max-width:960px}figure.left{max-width:75%;margin-left:-320px}figure.right{max-width:75%;margin-right:-320px}figure.big{width:1600px;margin-left:-320px}hr.post-end{width:30%}#toc{top:15em;margin-left:490px;max-width:300px}}@media(max-width:760px){.hide-in-mobile,.site-nav.hide-in-mobile{display:none}#menu-btn{display:inline-block}.posts-group{display:block}.posts-group .post-year{margin:-6px 0 4px}#spotlight.error-404{flex-direction:column;text-align:center}#spotlight.error-404 .banner-404{margin:0}}@media(max-width:520px){.content figure.left,.content figure.right{float:unset;max-width:100%;margin:0}hr.post-end{width:60%}#mobile-menu{right:1.2em}} \ No newline at end of file diff --git a/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.json b/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.json deleted file mode 100644 index 05b3741..0000000 --- a/resources/_gen/assets/scss/scss/style.scss_871e1d33253f63f556fbcaa4227752be.json +++ /dev/null @@ -1 +0,0 @@ -{"Target":"css/style.min.037b6ee8f8c1baab6a3d0a9da11c3ff18a7552471f16c59fd98538d5ce99208b.css","MediaType":"text/css","Data":{"Integrity":"sha256-A3tu6PjBuqtqPQqdoRw/8Yp1UkcfFsWf2YU41c6ZIIs="}} \ No newline at end of file diff --git a/resources/_gen/images/BlueBackground_hu19532763e60037fd7c8a529957258c47_614070_1200x0_resize_box_3.png b/resources/_gen/images/BlueBackground_hu19532763e60037fd7c8a529957258c47_614070_1200x0_resize_box_3.png deleted file mode 100644 index cef7ac9..0000000 Binary files a/resources/_gen/images/BlueBackground_hu19532763e60037fd7c8a529957258c47_614070_1200x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/JasperIcon_huc8d28a1a9d23e0681b05e3ef137b87e5_65736_192x192_fill_box_center_3.png b/resources/_gen/images/JasperIcon_huc8d28a1a9d23e0681b05e3ef137b87e5_65736_192x192_fill_box_center_3.png deleted file mode 100644 index 3ed81ac..0000000 Binary files a/resources/_gen/images/JasperIcon_huc8d28a1a9d23e0681b05e3ef137b87e5_65736_192x192_fill_box_center_3.png and /dev/null differ diff --git a/resources/_gen/images/JasperIcon_hud5026e612fea6d5190f6c08af2bcbb0a_6549_192x192_fill_box_center_3.png b/resources/_gen/images/JasperIcon_hud5026e612fea6d5190f6c08af2bcbb0a_6549_192x192_fill_box_center_3.png deleted file mode 100644 index c0c3ad2..0000000 Binary files a/resources/_gen/images/JasperIcon_hud5026e612fea6d5190f6c08af2bcbb0a_6549_192x192_fill_box_center_3.png and /dev/null differ diff --git a/resources/_gen/images/caiPic_grey_huc90c89ab4142b6a7a93f0ce14093f5e9_184713_192x192_fill_box_center_3.png b/resources/_gen/images/caiPic_grey_huc90c89ab4142b6a7a93f0ce14093f5e9_184713_192x192_fill_box_center_3.png deleted file mode 100644 index 12b8015..0000000 Binary files a/resources/_gen/images/caiPic_grey_huc90c89ab4142b6a7a93f0ce14093f5e9_184713_192x192_fill_box_center_3.png and /dev/null differ diff --git a/resources/_gen/images/caiPic_grey_huc90c89ab4142b6a7a93f0ce14093f5e9_184713_288x288_fill_box_center_3.png b/resources/_gen/images/caiPic_grey_huc90c89ab4142b6a7a93f0ce14093f5e9_184713_288x288_fill_box_center_3.png deleted file mode 100644 index ac078e7..0000000 Binary files a/resources/_gen/images/caiPic_grey_huc90c89ab4142b6a7a93f0ce14093f5e9_184713_288x288_fill_box_center_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Benefit_of_Blog/BenifitsOfBlogThumbnail_hub26ffaf3e59530048aed77caaffe4be3_1766818_1200x0_resize_box_3.png b/resources/_gen/images/posts/Benefit_of_Blog/BenifitsOfBlogThumbnail_hub26ffaf3e59530048aed77caaffe4be3_1766818_1200x0_resize_box_3.png deleted file mode 100644 index f542866..0000000 Binary files a/resources/_gen/images/posts/Benefit_of_Blog/BenifitsOfBlogThumbnail_hub26ffaf3e59530048aed77caaffe4be3_1766818_1200x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Benefit_of_Blog/BenifitsOfBlogThumbnail_hub26ffaf3e59530048aed77caaffe4be3_1766818_600x0_resize_box_3.png b/resources/_gen/images/posts/Benefit_of_Blog/BenifitsOfBlogThumbnail_hub26ffaf3e59530048aed77caaffe4be3_1766818_600x0_resize_box_3.png deleted file mode 100644 index 7f68ff5..0000000 Binary files a/resources/_gen/images/posts/Benefit_of_Blog/BenifitsOfBlogThumbnail_hub26ffaf3e59530048aed77caaffe4be3_1766818_600x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Built_with_Hugo/HugoSiteThumbnail_hu74f500c8ffffecf64d3abc6c2fe31a9d_1941990_1200x0_resize_box_3.png b/resources/_gen/images/posts/Built_with_Hugo/HugoSiteThumbnail_hu74f500c8ffffecf64d3abc6c2fe31a9d_1941990_1200x0_resize_box_3.png deleted file mode 100644 index 8b954f7..0000000 Binary files a/resources/_gen/images/posts/Built_with_Hugo/HugoSiteThumbnail_hu74f500c8ffffecf64d3abc6c2fe31a9d_1941990_1200x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Built_with_Hugo/HugoSiteThumbnail_hu74f500c8ffffecf64d3abc6c2fe31a9d_1941990_600x0_resize_box_3.png b/resources/_gen/images/posts/Built_with_Hugo/HugoSiteThumbnail_hu74f500c8ffffecf64d3abc6c2fe31a9d_1941990_600x0_resize_box_3.png deleted file mode 100644 index 488675a..0000000 Binary files a/resources/_gen/images/posts/Built_with_Hugo/HugoSiteThumbnail_hu74f500c8ffffecf64d3abc6c2fe31a9d_1941990_600x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_186511_1024x0_resize_box_3.png b/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_186511_1024x0_resize_box_3.png deleted file mode 100644 index 0e9e033..0000000 Binary files a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_186511_1024x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_186511_1320x0_resize_box_3.png b/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_186511_1320x0_resize_box_3.png deleted file mode 100644 index 8ebc49d..0000000 Binary files a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_186511_1320x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_186511_330x0_resize_box_3.png b/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_186511_330x0_resize_box_3.png deleted file mode 100644 index f6497de..0000000 Binary files a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_186511_330x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_186511_660x0_resize_box_3.png b/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_186511_660x0_resize_box_3.png deleted file mode 100644 index 8c6adf5..0000000 Binary files a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_186511_660x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_191321_1024x0_resize_box_3.png b/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_191321_1024x0_resize_box_3.png deleted file mode 100644 index 13ee864..0000000 Binary files a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_191321_1024x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_191321_1320x0_resize_box_3.png b/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_191321_1320x0_resize_box_3.png deleted file mode 100644 index 6c2e935..0000000 Binary files a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_191321_1320x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_191321_330x0_resize_box_3.png b/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_191321_330x0_resize_box_3.png deleted file mode 100644 index 7165fda..0000000 Binary files a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_191321_330x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_191321_660x0_resize_box_3.png b/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_191321_660x0_resize_box_3.png deleted file mode 100644 index 32e8378..0000000 Binary files a/resources/_gen/images/posts/Built_with_Hugo/img/GithubAzure_hu39578b735866f2492a8d100d8174a135_191321_660x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Built_with_Hugo/img/hugo-logo-wide_hu52076c6b1f1ba5dd82c728caef4c5289_54367_1024x0_resize_box_3.png b/resources/_gen/images/posts/Built_with_Hugo/img/hugo-logo-wide_hu52076c6b1f1ba5dd82c728caef4c5289_54367_1024x0_resize_box_3.png deleted file mode 100644 index 4fe7ecc..0000000 Binary files a/resources/_gen/images/posts/Built_with_Hugo/img/hugo-logo-wide_hu52076c6b1f1ba5dd82c728caef4c5289_54367_1024x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Built_with_Hugo/img/hugo-logo-wide_hu52076c6b1f1ba5dd82c728caef4c5289_54367_1320x0_resize_box_3.png b/resources/_gen/images/posts/Built_with_Hugo/img/hugo-logo-wide_hu52076c6b1f1ba5dd82c728caef4c5289_54367_1320x0_resize_box_3.png deleted file mode 100644 index c306ba4..0000000 Binary files a/resources/_gen/images/posts/Built_with_Hugo/img/hugo-logo-wide_hu52076c6b1f1ba5dd82c728caef4c5289_54367_1320x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Built_with_Hugo/img/hugo-logo-wide_hu52076c6b1f1ba5dd82c728caef4c5289_54367_330x0_resize_box_3.png b/resources/_gen/images/posts/Built_with_Hugo/img/hugo-logo-wide_hu52076c6b1f1ba5dd82c728caef4c5289_54367_330x0_resize_box_3.png deleted file mode 100644 index f6303a8..0000000 Binary files a/resources/_gen/images/posts/Built_with_Hugo/img/hugo-logo-wide_hu52076c6b1f1ba5dd82c728caef4c5289_54367_330x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Built_with_Hugo/img/hugo-logo-wide_hu52076c6b1f1ba5dd82c728caef4c5289_54367_660x0_resize_box_3.png b/resources/_gen/images/posts/Built_with_Hugo/img/hugo-logo-wide_hu52076c6b1f1ba5dd82c728caef4c5289_54367_660x0_resize_box_3.png deleted file mode 100644 index b605695..0000000 Binary files a/resources/_gen/images/posts/Built_with_Hugo/img/hugo-logo-wide_hu52076c6b1f1ba5dd82c728caef4c5289_54367_660x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Hello-World/HelloWorldThumbnail_hu2584aaaf99a6d3f3dc6719bd9f8b0ca4_2187895_1200x0_resize_box_3.png b/resources/_gen/images/posts/Hello-World/HelloWorldThumbnail_hu2584aaaf99a6d3f3dc6719bd9f8b0ca4_2187895_1200x0_resize_box_3.png deleted file mode 100644 index a363246..0000000 Binary files a/resources/_gen/images/posts/Hello-World/HelloWorldThumbnail_hu2584aaaf99a6d3f3dc6719bd9f8b0ca4_2187895_1200x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Hello-World/HelloWorldThumbnail_hu2584aaaf99a6d3f3dc6719bd9f8b0ca4_2187895_600x0_resize_box_3.png b/resources/_gen/images/posts/Hello-World/HelloWorldThumbnail_hu2584aaaf99a6d3f3dc6719bd9f8b0ca4_2187895_600x0_resize_box_3.png deleted file mode 100644 index 47f065e..0000000 Binary files a/resources/_gen/images/posts/Hello-World/HelloWorldThumbnail_hu2584aaaf99a6d3f3dc6719bd9f8b0ca4_2187895_600x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/LastPostWasLieThumbnail_hu881692ef08ff09e1c383424cf4634bc1_2017743_1200x0_resize_box_3.png b/resources/_gen/images/posts/Last_Post_Was_A_Lie/LastPostWasLieThumbnail_hu881692ef08ff09e1c383424cf4634bc1_2017743_1200x0_resize_box_3.png deleted file mode 100644 index 0ac1062..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/LastPostWasLieThumbnail_hu881692ef08ff09e1c383424cf4634bc1_2017743_1200x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/LastPostWasLieThumbnail_hu881692ef08ff09e1c383424cf4634bc1_2017743_600x0_resize_box_3.png b/resources/_gen/images/posts/Last_Post_Was_A_Lie/LastPostWasLieThumbnail_hu881692ef08ff09e1c383424cf4634bc1_2017743_600x0_resize_box_3.png deleted file mode 100644 index 8e077da..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/LastPostWasLieThumbnail_hu881692ef08ff09e1c383424cf4634bc1_2017743_600x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/42_hua4397e9a2dc670a88ccdb9c04dddfe8c_1223604_1024x0_resize_box_1.gif b/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/42_hua4397e9a2dc670a88ccdb9c04dddfe8c_1223604_1024x0_resize_box_1.gif deleted file mode 100644 index ca70b52..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/42_hua4397e9a2dc670a88ccdb9c04dddfe8c_1223604_1024x0_resize_box_1.gif and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/42_hua4397e9a2dc670a88ccdb9c04dddfe8c_1223604_1320x0_resize_box_1.gif b/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/42_hua4397e9a2dc670a88ccdb9c04dddfe8c_1223604_1320x0_resize_box_1.gif deleted file mode 100644 index b5e454c..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/42_hua4397e9a2dc670a88ccdb9c04dddfe8c_1223604_1320x0_resize_box_1.gif and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/42_hua4397e9a2dc670a88ccdb9c04dddfe8c_1223604_330x0_resize_box_1.gif b/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/42_hua4397e9a2dc670a88ccdb9c04dddfe8c_1223604_330x0_resize_box_1.gif deleted file mode 100644 index 62f7db8..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/42_hua4397e9a2dc670a88ccdb9c04dddfe8c_1223604_330x0_resize_box_1.gif and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/42_hua4397e9a2dc670a88ccdb9c04dddfe8c_1223604_660x0_resize_box_1.gif b/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/42_hua4397e9a2dc670a88ccdb9c04dddfe8c_1223604_660x0_resize_box_1.gif deleted file mode 100644 index 7b2c0d3..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/42_hua4397e9a2dc670a88ccdb9c04dddfe8c_1223604_660x0_resize_box_1.gif and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/OneShotBlog_hu4230ee4c4205da936213a7da566e5948_192747_1024x0_resize_box_3.png b/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/OneShotBlog_hu4230ee4c4205da936213a7da566e5948_192747_1024x0_resize_box_3.png deleted file mode 100644 index 6a51812..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/OneShotBlog_hu4230ee4c4205da936213a7da566e5948_192747_1024x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/OneShotBlog_hu4230ee4c4205da936213a7da566e5948_192747_1320x0_resize_box_3.png b/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/OneShotBlog_hu4230ee4c4205da936213a7da566e5948_192747_1320x0_resize_box_3.png deleted file mode 100644 index 07b0e83..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/OneShotBlog_hu4230ee4c4205da936213a7da566e5948_192747_1320x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/OneShotBlog_hu4230ee4c4205da936213a7da566e5948_192747_330x0_resize_box_3.png b/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/OneShotBlog_hu4230ee4c4205da936213a7da566e5948_192747_330x0_resize_box_3.png deleted file mode 100644 index b9a263e..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/OneShotBlog_hu4230ee4c4205da936213a7da566e5948_192747_330x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/OneShotBlog_hu4230ee4c4205da936213a7da566e5948_192747_660x0_resize_box_3.png b/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/OneShotBlog_hu4230ee4c4205da936213a7da566e5948_192747_660x0_resize_box_3.png deleted file mode 100644 index 3ccdb07..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/OneShotBlog_hu4230ee4c4205da936213a7da566e5948_192747_660x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/whoisthisjasper_hu9280465cfa1955ed5948dd9670907d2e_1937726_1024x0_resize_box_1.gif b/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/whoisthisjasper_hu9280465cfa1955ed5948dd9670907d2e_1937726_1024x0_resize_box_1.gif deleted file mode 100644 index 32403d1..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/whoisthisjasper_hu9280465cfa1955ed5948dd9670907d2e_1937726_1024x0_resize_box_1.gif and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/whoisthisjasper_hu9280465cfa1955ed5948dd9670907d2e_1937726_1320x0_resize_box_1.gif b/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/whoisthisjasper_hu9280465cfa1955ed5948dd9670907d2e_1937726_1320x0_resize_box_1.gif deleted file mode 100644 index 29ac6eb..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/whoisthisjasper_hu9280465cfa1955ed5948dd9670907d2e_1937726_1320x0_resize_box_1.gif and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/whoisthisjasper_hu9280465cfa1955ed5948dd9670907d2e_1937726_330x0_resize_box_1.gif b/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/whoisthisjasper_hu9280465cfa1955ed5948dd9670907d2e_1937726_330x0_resize_box_1.gif deleted file mode 100644 index a9eb00b..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/whoisthisjasper_hu9280465cfa1955ed5948dd9670907d2e_1937726_330x0_resize_box_1.gif and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/whoisthisjasper_hu9280465cfa1955ed5948dd9670907d2e_1937726_660x0_resize_box_1.gif b/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/whoisthisjasper_hu9280465cfa1955ed5948dd9670907d2e_1937726_660x0_resize_box_1.gif deleted file mode 100644 index aef4334..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/img/whoisthisjasper_hu9280465cfa1955ed5948dd9670907d2e_1937726_660x0_resize_box_1.gif and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/jasperThumbnail_hu1a7b037742e2142364415b6494471dd8_10688_1200x0_resize_box_3.png b/resources/_gen/images/posts/Last_Post_Was_A_Lie/jasperThumbnail_hu1a7b037742e2142364415b6494471dd8_10688_1200x0_resize_box_3.png deleted file mode 100644 index d62dcf0..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/jasperThumbnail_hu1a7b037742e2142364415b6494471dd8_10688_1200x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/jasperThumbnail_hu1a7b037742e2142364415b6494471dd8_10688_600x0_resize_box_3.png b/resources/_gen/images/posts/Last_Post_Was_A_Lie/jasperThumbnail_hu1a7b037742e2142364415b6494471dd8_10688_600x0_resize_box_3.png deleted file mode 100644 index f2f68d1..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/jasperThumbnail_hu1a7b037742e2142364415b6494471dd8_10688_600x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/jasperThumbnail_huc8d28a1a9d23e0681b05e3ef137b87e5_65736_1200x0_resize_box_3.png b/resources/_gen/images/posts/Last_Post_Was_A_Lie/jasperThumbnail_huc8d28a1a9d23e0681b05e3ef137b87e5_65736_1200x0_resize_box_3.png deleted file mode 100644 index 826ee06..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/jasperThumbnail_huc8d28a1a9d23e0681b05e3ef137b87e5_65736_1200x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/posts/Last_Post_Was_A_Lie/jasperThumbnail_huc8d28a1a9d23e0681b05e3ef137b87e5_65736_600x0_resize_box_3.png b/resources/_gen/images/posts/Last_Post_Was_A_Lie/jasperThumbnail_huc8d28a1a9d23e0681b05e3ef137b87e5_65736_600x0_resize_box_3.png deleted file mode 100644 index 2dc9162..0000000 Binary files a/resources/_gen/images/posts/Last_Post_Was_A_Lie/jasperThumbnail_huc8d28a1a9d23e0681b05e3ef137b87e5_65736_600x0_resize_box_3.png and /dev/null differ diff --git a/resources/_gen/images/profilepic_hu95744af0033ea6b638f56b377ec47d14_2013016_192x192_fill_box_center_3.png b/resources/_gen/images/profilepic_hu95744af0033ea6b638f56b377ec47d14_2013016_192x192_fill_box_center_3.png deleted file mode 100644 index 5b79fda..0000000 Binary files a/resources/_gen/images/profilepic_hu95744af0033ea6b638f56b377ec47d14_2013016_192x192_fill_box_center_3.png and /dev/null differ diff --git a/resources/_gen/images/profilepic_hu95744af0033ea6b638f56b377ec47d14_2013016_288x288_fill_box_center_3.png b/resources/_gen/images/profilepic_hu95744af0033ea6b638f56b377ec47d14_2013016_288x288_fill_box_center_3.png deleted file mode 100644 index 54b8a75..0000000 Binary files a/resources/_gen/images/profilepic_hu95744af0033ea6b638f56b377ec47d14_2013016_288x288_fill_box_center_3.png and /dev/null differ diff --git a/resources/_gen/images/profilepic_hudd8dedfa81098db5320d9bd05f8dbaca_1955553_192x192_fill_box_center_3.png b/resources/_gen/images/profilepic_hudd8dedfa81098db5320d9bd05f8dbaca_1955553_192x192_fill_box_center_3.png deleted file mode 100644 index 5bc85e4..0000000 Binary files a/resources/_gen/images/profilepic_hudd8dedfa81098db5320d9bd05f8dbaca_1955553_192x192_fill_box_center_3.png and /dev/null differ diff --git a/resources/_gen/images/profilepic_hudd8dedfa81098db5320d9bd05f8dbaca_1955553_288x288_fill_box_center_3.png b/resources/_gen/images/profilepic_hudd8dedfa81098db5320d9bd05f8dbaca_1955553_288x288_fill_box_center_3.png deleted file mode 100644 index 435d8c6..0000000 Binary files a/resources/_gen/images/profilepic_hudd8dedfa81098db5320d9bd05f8dbaca_1955553_288x288_fill_box_center_3.png and /dev/null differ diff --git a/themes/blowfish b/themes/blowfish index c9c5b3d..e61c342 160000 --- a/themes/blowfish +++ b/themes/blowfish @@ -1 +1 @@ -Subproject commit c9c5b3d9cf8b1431579d72678118cf6ad7b9df68 +Subproject commit e61c34249f9978b0a69216c0dc7796b6876f984e