diff --git a/README.md b/README.md index 83ad9e4..488ce6d 100644 --- a/README.md +++ b/README.md @@ -8,4 +8,4 @@ If you like to contribute articles to this blog, see [CONTRIBUTION.md](https://g ## Archive Notice!!! -All future articles will be published on hashnode: https://davesaah.hashnode.dev/series/codereviewshop +All future articles will be published on hashnode: https://davesaah.hashnode.dev diff --git a/assets/Announcement.md b/assets/Announcement.md new file mode 100644 index 0000000..92ad9db --- /dev/null +++ b/assets/Announcement.md @@ -0,0 +1,3 @@ +### Archive Notice!!! + +This website has been archived. All future articles will be published on hashnode: https://davesaah.hashnode.dev diff --git a/config.toml b/config.toml index 957b659..28fa921 100644 --- a/config.toml +++ b/config.toml @@ -46,11 +46,6 @@ anonymizeIP = true [privacy.youtube] privacyEnhanced = true -[sitemap] -changefreq = "weekly" -priority = 0.5 -filename = "sitemap.xml" - [[menu.main]] name = "Home" @@ -111,7 +106,7 @@ unsafe = true [params] publicCDN = "" topTitle = false -sitemap = true +sitemap = false themeColor = "#077df2" blackAndWhite = false googleAnalytics = "G-WYRZQGM41V" @@ -146,8 +141,7 @@ file = "Announcement.md" enabled = false [params.rss] -enabled = true -fullText = true +enabled = false [params.console] enabled = true @@ -179,7 +173,7 @@ url = "https://creativecommons.org/licenses/by-nc-nd/4.0" [params.github] minStars = 0 -ids = ["CodeReviewShop", "DaveSaah"] +id = "CodeReviewShop" [params.bionicReading] enabled = true diff --git a/content/github.md b/content/github.md index e6614c5..aa97f5d 100644 --- a/content/github.md +++ b/content/github.md @@ -1,5 +1,5 @@ --- title: "Github" date: 2023-01-14T09:57:37Z -layout: github-multiple +layout: github --- diff --git a/content/links/codereview-logo.png b/content/links/codereview-logo.png deleted file mode 100644 index ce56715..0000000 Binary files a/content/links/codereview-logo.png and /dev/null differ diff --git a/content/links/index.md b/content/links/index.md index fdfbeba..0b913f6 100644 --- a/content/links/index.md +++ b/content/links/index.md @@ -4,12 +4,8 @@ date: 2022-12-26T23:34:08Z layout: links --- -{{< link url="https://github.com/DaveSaah" image="github.png" title="GitHub" desc="Stay curious" >}} +{{< link url="https://github.com/CodeReviewShop" image="github.png" title="GitHub" >}} -{{< link url="https://davesaah.hashnode.dev" image="hashnode.png" title="Hashnode" desc="Want to read more about what I explore?" >}} +{{< link url="https://davesaah.hashnode.dev" image="hashnode.png" title="Hashnode" >}} -{{< link url="https://linkedin.com/in/davesaah" image="linkedin.png" title="LinkedIn" desc="Connect with me" >}} - -{{< link url="https://codereviewshop.web.app" image="codereview-logo.png" title="CodeReviewShop" desc="Let's solve problems together" >}} - -{{< link url="https://davesaah.web.app" image="opensource.png" title="My Portfolio" desc="Get to know me" >}} +{{< link url="https://linkedin.com/company/codereviewshop" image="linkedin.png" title="LinkedIn" >}} diff --git a/content/links/opensource.png b/content/links/opensource.png deleted file mode 100644 index a04b981..0000000 Binary files a/content/links/opensource.png and /dev/null differ diff --git a/layouts/_default/github-multiple.html b/layouts/_default/github-multiple.html deleted file mode 100644 index ac12bc3..0000000 --- a/layouts/_default/github-multiple.html +++ /dev/null @@ -1,69 +0,0 @@ -{{- define "main" -}} - {{- $githubConfig := .Site.Params.github -}} -
- {{- range $id := $githubConfig.ids -}} -
-
- - {{- $.Title -}} -
- -
- -
- {{- $githubColors := $.Site.Data.luna.githubColors -}} - {{- $apiURL := print "https://api.github.com/users/" $id "/repos?per_page=100&type=owner" -}} - {{- $githubData := getJSON $apiURL -}} - {{- range sort $githubData "stargazers_count" "desc" -}} - {{- if and (eq .owner.login $id) (gt .stargazers_count $githubConfig.minStars) -}} - -
-
-
- {{- .name -}} -
-
- {{- or .description "My awesome project" -}} -
-
-
-
-
- - {{- .stargazers_count -}} -
- - {{- if .language -}} -
- - {{- .language -}} -
- {{- end -}} -
- -
- - {{- .forks -}} -
-
- -
- -
-
-
- {{- end -}} - {{- end -}} -
- {{- else -}} - {{- warnf "!!! GitHub ID not set, Please check your config file" -}} -
ERROR: {{- T "github.config" -}}
- {{- end -}} -
-{{- end -}}