From bed004d68ae15f1e46be7b0d1d25d215586b8d3e Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Fri, 30 Dec 2022 17:13:52 +0900 Subject: [PATCH 01/13] =?UTF-8?q?`readme.md`=E3=81=AE=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 readme.md diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..5f7cdf2 --- /dev/null +++ b/readme.md @@ -0,0 +1 @@ +かつて存在していた東北大学・ランニングサークル Everun のサークルページになります。放置していたけれど、リニューアルをします。 From 2b749aca8b519eab5ff8ff00a01dff3281167d3f Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Fri, 30 Dec 2022 17:26:45 +0900 Subject: [PATCH 02/13] Add .gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1c84042 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.hugo_build.lock +assets +resources From f2a644a066420bf8c0779cd5a1d75308822480fd Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Sun, 1 Jan 2023 10:20:52 +0900 Subject: [PATCH 03/13] =?UTF-8?q?Git=20LFS=E3=82=92=E5=88=A9=E7=94=A8?= =?UTF-8?q?=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitattributes | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1691f22 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +*.png filter=lfs diff=lfs merge=lfs -text +*.jpg filter=lfs diff=lfs merge=lfs -text From 6ab93a3d2d278d395a0aa7b100f8efaeb3198511 Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Fri, 30 Dec 2022 17:46:04 +0900 Subject: [PATCH 04/13] =?UTF-8?q?`hugo=20sever`=E7=94=A8=E3=81=AE=E3=82=BF?= =?UTF-8?q?=E3=82=B9=E3=82=AF=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..99233bd --- /dev/null +++ b/Rakefile @@ -0,0 +1,3 @@ +#!/usr/bin/env rake + +Dir['tasks/**/*.rake'].each { |path| load path } diff --git a/tasks/demo.rake b/tasks/demo.rake new file mode 100755 index 0000000..d10863b --- /dev/null +++ b/tasks/demo.rake @@ -0,0 +1,12 @@ +#!/usr/bin/env rake + +require 'socket' + +desc 'Generate the HTML demo pages including drafts' +task :demo do + ip = Socket.getifaddrs.select{|x| + x.name == "ens160" and x.addr.ipv4? + }.first.addr.ip_address + + sh "hugo server --buildDrafts -w --bind #{ip} -b #{ip} --disableFastRender" +end --- Rakefile | 3 +++ tasks/demo.rake | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 Rakefile create mode 100755 tasks/demo.rake diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..99233bd --- /dev/null +++ b/Rakefile @@ -0,0 +1,3 @@ +#!/usr/bin/env rake + +Dir['tasks/**/*.rake'].each { |path| load path } diff --git a/tasks/demo.rake b/tasks/demo.rake new file mode 100755 index 0000000..d10863b --- /dev/null +++ b/tasks/demo.rake @@ -0,0 +1,12 @@ +#!/usr/bin/env rake + +require 'socket' + +desc 'Generate the HTML demo pages including drafts' +task :demo do + ip = Socket.getifaddrs.select{|x| + x.name == "ens160" and x.addr.ipv4? + }.first.addr.ip_address + + sh "hugo server --buildDrafts -w --bind #{ip} -b #{ip} --disableFastRender" +end From 90f631ac671b965efa37655c295c39acbe1afe28 Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Fri, 30 Dec 2022 17:16:06 +0900 Subject: [PATCH 05/13] =?UTF-8?q?[Blowfish](https://nunocoracao.github.io/?= =?UTF-8?q?blowfish/)=E3=81=AE=E5=B0=8E=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitmodules | 4 ++++ themes/blowfish | 1 + 2 files changed, 5 insertions(+) create mode 100644 .gitmodules create mode 160000 themes/blowfish diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..426d936 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,4 @@ +[submodule "themes/blowfish"] + path = themes/blowfish + url = https://github.com/nunocoracao/blowfish.git + branch = main diff --git a/themes/blowfish b/themes/blowfish new file mode 160000 index 0000000..c62cad5 --- /dev/null +++ b/themes/blowfish @@ -0,0 +1 @@ +Subproject commit c62cad5d150800bca50a11b60d2e012f6be98577 From 316defd5617ad19b86118b08d24eacfffa993ccc Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Fri, 30 Dec 2022 17:18:19 +0900 Subject: [PATCH 06/13] =?UTF-8?q?`Blowfish`=E3=81=AE=E5=88=9D=E6=9C=9F?= =?UTF-8?q?=E8=A8=AD=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.toml | 3 - config/_default/config.toml | 30 +++++++ config/_default/languages.en.toml | 63 ++++++++++++++ config/_default/markup.toml | 13 +++ config/_default/menus.en.toml | 42 ++++++++++ config/_default/params.toml | 133 ++++++++++++++++++++++++++++++ 6 files changed, 281 insertions(+), 3 deletions(-) delete mode 100644 config.toml create mode 100644 config/_default/config.toml create mode 100644 config/_default/languages.en.toml create mode 100644 config/_default/markup.toml create mode 100644 config/_default/menus.en.toml create mode 100644 config/_default/params.toml diff --git a/config.toml b/config.toml deleted file mode 100644 index 1d7c819..0000000 --- a/config.toml +++ /dev/null @@ -1,3 +0,0 @@ -baseURL = 'http://example.org/' -languageCode = 'en-us' -title = 'My New Hugo Site' diff --git a/config/_default/config.toml b/config/_default/config.toml new file mode 100644 index 0000000..b29e712 --- /dev/null +++ b/config/_default/config.toml @@ -0,0 +1,30 @@ +# -- Site Configuration -- +# Refer to the theme docs for more details about each of these parameters. +# https://nunocoracao.github.io/blowfish/docs/getting-started/ + +theme = "blowfish" +# baseURL = "https://your_domain.com/" +defaultContentLanguage = "en" + +enableRobotsTXT = true +paginate = 20 +summaryLength = 30 + +buildDrafts = false +buildFuture = false + +# googleAnalytics = "G-XXXXXXXXX" + +[taxonomies] + tag = "tags" + category = "categories" + author = "authors" + series = "series" + +[sitemap] + changefreq = 'daily' + filename = 'sitemap.xml' + priority = 0.5 + +[outputs] + home = ["HTML", "RSS", "JSON"] diff --git a/config/_default/languages.en.toml b/config/_default/languages.en.toml new file mode 100644 index 0000000..9e815f3 --- /dev/null +++ b/config/_default/languages.en.toml @@ -0,0 +1,63 @@ +languageCode = "en" +languageName = "English" +displayName = "EN" +isoCode = "en" +weight = 1 +rtl = false + +title = "Blowfish" +# logo = "img/logo.png" +description = "My awesome website" +# copyright = "Copy, _right?_ :thinking_face:" + +dateFormat = "2 January 2006" + +[author] + name = "Your name here" + image = "img/blowfish_logo.png" + headline = "I'm only human" + bio = "A little bit about you" + # links = [ + # { email = "mailto:hello@your_domain.com" }, + # { link = "https://link-to-some-website.com/" }, + # { amazon = "https://www.amazon.com/hz/wishlist/ls/wishlist-id" }, + # { apple = "https://www.apple.com" }, + # { blogger = "https://username.blogspot.com/" }, + # { codepen = "https://codepen.io/username" }, + # { dev = "https://dev.to/username" }, + # { discord = "https://discord.gg/invitecode" }, + # { dribbble = "https://dribbble.com/username" }, + # { facebook = "https://facebook.com/username" }, + # { flickr = "https://www.flickr.com/photos/username/" }, + # { foursquare = "https://foursquare.com/username" }, + # { github = "https://github.com/username" }, + # { gitlab = "https://gitlab.com/username" }, + # { google = "https://www.google.com/" }, + # { hashnode = "https://username.hashnode.dev" }, + # { instagram = "https://instagram.com/username" }, + # { keybase = "https://keybase.io/username" }, + # { kickstarter = "https://www.kickstarter.com/profile/username" }, + # { lastfm = "https://lastfm.com/user/username" }, + # { linkedin = "https://linkedin.com/in/username" }, + # { mastodon = "https://mastodon.instance/@username" }, + # { medium = "https://medium.com/username" }, + # { microsoft = "https://www.microsoft.com/" }, + # { orcid = "https://orcid.org/userid" }, + # { patreon = "https://www.patreon.com/username" }, + # { pinterest = "https://pinterest.com/username" }, + # { reddit = "https://reddit.com/user/username" }, + # { researchgate = "https://www.researchgate.net/profile/username" }, + # { slack = "https://workspace.url/team/userid" }, + # { snapchat = "https://snapchat.com/add/username" }, + # { soundcloud = "https://soundcloud.com/username" }, + # { stack-overflow = "https://stackoverflow.com/users/userid/username" }, + # { steam = "https://steamcommunity.com/profiles/userid" }, + # { telegram = "https://t.me/username" }, + # { tiktok = "https://tiktok.com/@username" }, + # { tumblr = "https://username.tumblr.com" }, + # { twitch = "https://twitch.tv/username" }, + # { twitter = "https://twitter.com/username" }, + # { whatsapp = "https://wa.me/phone-number" }, + # { youtube = "https://youtube.com/username" }, + # { ko-fi = "https://ko-fi.com/username" }, + # ] diff --git a/config/_default/markup.toml b/config/_default/markup.toml new file mode 100644 index 0000000..c5449fc --- /dev/null +++ b/config/_default/markup.toml @@ -0,0 +1,13 @@ +# -- Markup -- +# These settings are required for the theme to function. + +[goldmark] +[goldmark.renderer] + unsafe = true + +[highlight] + noClasses = false + +[tableOfContents] + startLevel = 2 + endLevel = 4 diff --git a/config/_default/menus.en.toml b/config/_default/menus.en.toml new file mode 100644 index 0000000..384fc92 --- /dev/null +++ b/config/_default/menus.en.toml @@ -0,0 +1,42 @@ +# -- Main Menu -- +# The main menu is displayed in the header at the top of the page. +# Acceptable parameters are name, pageRef, page, url, title, weight. +# +# The simplest menu configuration is to provide: +# name = The name to be displayed for this menu link +# pageRef = The identifier of the page or section to link to +# +# By default the menu is ordered alphabetically. This can be +# overridden by providing a weight value. The menu will then be +# ordered by weight from lowest to highest. + +#[[main]] +# name = "Blog" +# pageRef = "posts" +# weight = 10 + +#[[main]] +# name = "Categories" +# pageRef = "categories" +# weight = 20 + +#[[main]] +# name = "Tags" +# pageRef = "tags" +# weight = 30 + + +# -- Footer Menu -- +# The footer menu is displayed at the bottom of the page, just before +# the copyright notice. Configure as per the main menu above. + + +# [[footer]] +# name = "Tags" +# pageRef = "tags" +# weight = 10 + +# [[footer]] +# name = "Categories" +# pageRef = "categories" +# weight = 20 diff --git a/config/_default/params.toml b/config/_default/params.toml new file mode 100644 index 0000000..bfb00e4 --- /dev/null +++ b/config/_default/params.toml @@ -0,0 +1,133 @@ +# -- Theme Options -- +# These options control how the theme functions and allow you to +# customise the display of your website. +# +# Refer to the theme docs for more details about each of these parameters. +# https://nunocoracao.github.io/blowfish/docs/configuration/#theme-parameters + +colorScheme = "blowfish" +defaultAppearance = "light" # valid options: light or dark +autoSwitchAppearance = true + +enableSearch = true +enableCodeCopy = true + +# mainSections = ["section1", "section2"] +# robots = "" + +# disableImageOptimization = false + +# defaultBackgroundImage = "IMAGE.jpg" # used as default for background images + +[header] + layout = "basic" # valid options: basic, fixed + +[footer] + # showMenu = true + showCopyright = true + showThemeAttribution = true + showAppearanceSwitcher = true + showScrollToTop = true + +[homepage] + layout = "profile" # valid options: page, profile, hero, card, background, custom + #homepageImage = "IMAGE.jpg" # used in: hero, and card + showRecent = false + showRecentItems = 5 + showMoreLink = false + showMoreLinkDest = "/posts" + cardView = false + cardViewScreenWidth = false + layoutBackgroundBlur = false # only used when layout equals background + +[article] + showDate = true + #showViews = true + #showLikes = true + showDateUpdated = false + showAuthor = true + showHero = true + heroStyle = "basic" # valid options: basic, big, background, thumbAndBackground + layoutBackgroundBlur = false # only used when heroStyle equals background or thumbAndBackground + layoutBackgroundHeaderSpace = true # only used when heroStyle equals background + showBreadcrumbs = true + showDraftLabel = true + showEdit = true + # editURL = "https://github.com/username/repo/" + editAppendPath = true + seriesOpened = false + showHeadingAnchors = true + showPagination = true + invertPagination = false + showReadingTime = true + showTableOfContents = true + showTaxonomies = false + showAuthorsBadges = false + showWordCount = true + showSummary = true + sharingLinks = [ "linkedin", "twitter", "whatsapp", "pinterest", "reddit", "facebook", "email"] + +[list] + #showHero = true + #heroStyle = "background" # valid options: basic, big, background, thumbAndBackground + #layoutBackgroundBlur = true # only used when heroStyle equals background or thumbAndBackground + #layoutBackgroundHeaderSpace = true # only used when heroStyle equals background + showBreadcrumbs = false + showSummary = false + #showViews = true + #showLikes = true + showTableOfContents = false + showCards = false + groupByYear = true + cardView = false + cardViewScreenWidth = false + +[sitemap] + excludedKinds = [] + +[taxonomy] + showTermCount = true + #showHero = true + #heroStyle = "background" # valid options: basic, big, background, thumbAndBackground + showBreadcrumbs = false + #showViews = false + #showLikes = false + #showTableOfContents = true + #cardView = false + +[term] + #showHero = true + #heroStyle = "background" # valid options: basic, big, background, thumbAndBackground + showBreadcrumbs = false + #showViews = false + #showLikes = false + #showTableOfContents = true + #groupByYear = false + #cardViewScreenWidth = false + #cardView = false + +[firebase] + # apiKey = "XXXXXX" + # authDomain = "XXXXXX" + # projectId = "XXXXXX" + # storageBucket = "XXXXXX" + # messagingSenderId = "XXXXXX" + # appId = "XXXXXX" + # measurementId = "XXXXXX" + +[fathomAnalytics] + # site = "ABC12345" + # domain = "llama.yoursite.com" + +[buymeacoffee] + # identifier = "" + # globalWidget = true + # globalWidgetMessage = "Hello" + # globalWidgetColor = "#FFDD00" + # globalWidgetPosition = "Right" + +[verification] + # google = "" + # bing = "" + # pinterest = "" + # yandex = "" From e0858e935c6f014ce8a34049c58cfdb9017c7cda Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Fri, 30 Dec 2022 17:51:55 +0900 Subject: [PATCH 07/13] =?UTF-8?q?`Blowfish`=E3=81=AE=E8=A8=AD=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/_default/config.toml | 17 +++-- config/_default/languages.en.toml | 63 ------------------- config/_default/languages.ja.toml | 24 +++++++ .../_default/{menus.en.toml => menus.ja.toml} | 39 +++++------- config/_default/params.toml | 56 ++++++++--------- config/_default/taxonomies.toml | 2 + 6 files changed, 82 insertions(+), 119 deletions(-) delete mode 100644 config/_default/languages.en.toml create mode 100644 config/_default/languages.ja.toml rename config/_default/{menus.en.toml => menus.ja.toml} (64%) create mode 100644 config/_default/taxonomies.toml diff --git a/config/_default/config.toml b/config/_default/config.toml index b29e712..b193dfb 100644 --- a/config/_default/config.toml +++ b/config/_default/config.toml @@ -1,23 +1,25 @@ # -- Site Configuration -- # Refer to the theme docs for more details about each of these parameters. -# https://nunocoracao.github.io/blowfish/docs/getting-started/ +# https://blowfish.page/docs/getting-started/ theme = "blowfish" -# baseURL = "https://your_domain.com/" -defaultContentLanguage = "en" +baseURL = "https://everun.club/" +defaultContentLanguage = "ja" +hasCJKLanguage = true enableRobotsTXT = true paginate = 20 -summaryLength = 30 +summaryLength = 80 buildDrafts = false buildFuture = false # googleAnalytics = "G-XXXXXXXXX" +[imaging] + anchor = 'Center' + [taxonomies] - tag = "tags" - category = "categories" author = "authors" series = "series" @@ -28,3 +30,6 @@ buildFuture = false [outputs] home = ["HTML", "RSS", "JSON"] + +[permalinks] + posts = '/:year/:month/:filename/' diff --git a/config/_default/languages.en.toml b/config/_default/languages.en.toml deleted file mode 100644 index 9e815f3..0000000 --- a/config/_default/languages.en.toml +++ /dev/null @@ -1,63 +0,0 @@ -languageCode = "en" -languageName = "English" -displayName = "EN" -isoCode = "en" -weight = 1 -rtl = false - -title = "Blowfish" -# logo = "img/logo.png" -description = "My awesome website" -# copyright = "Copy, _right?_ :thinking_face:" - -dateFormat = "2 January 2006" - -[author] - name = "Your name here" - image = "img/blowfish_logo.png" - headline = "I'm only human" - bio = "A little bit about you" - # links = [ - # { email = "mailto:hello@your_domain.com" }, - # { link = "https://link-to-some-website.com/" }, - # { amazon = "https://www.amazon.com/hz/wishlist/ls/wishlist-id" }, - # { apple = "https://www.apple.com" }, - # { blogger = "https://username.blogspot.com/" }, - # { codepen = "https://codepen.io/username" }, - # { dev = "https://dev.to/username" }, - # { discord = "https://discord.gg/invitecode" }, - # { dribbble = "https://dribbble.com/username" }, - # { facebook = "https://facebook.com/username" }, - # { flickr = "https://www.flickr.com/photos/username/" }, - # { foursquare = "https://foursquare.com/username" }, - # { github = "https://github.com/username" }, - # { gitlab = "https://gitlab.com/username" }, - # { google = "https://www.google.com/" }, - # { hashnode = "https://username.hashnode.dev" }, - # { instagram = "https://instagram.com/username" }, - # { keybase = "https://keybase.io/username" }, - # { kickstarter = "https://www.kickstarter.com/profile/username" }, - # { lastfm = "https://lastfm.com/user/username" }, - # { linkedin = "https://linkedin.com/in/username" }, - # { mastodon = "https://mastodon.instance/@username" }, - # { medium = "https://medium.com/username" }, - # { microsoft = "https://www.microsoft.com/" }, - # { orcid = "https://orcid.org/userid" }, - # { patreon = "https://www.patreon.com/username" }, - # { pinterest = "https://pinterest.com/username" }, - # { reddit = "https://reddit.com/user/username" }, - # { researchgate = "https://www.researchgate.net/profile/username" }, - # { slack = "https://workspace.url/team/userid" }, - # { snapchat = "https://snapchat.com/add/username" }, - # { soundcloud = "https://soundcloud.com/username" }, - # { stack-overflow = "https://stackoverflow.com/users/userid/username" }, - # { steam = "https://steamcommunity.com/profiles/userid" }, - # { telegram = "https://t.me/username" }, - # { tiktok = "https://tiktok.com/@username" }, - # { tumblr = "https://username.tumblr.com" }, - # { twitch = "https://twitch.tv/username" }, - # { twitter = "https://twitter.com/username" }, - # { whatsapp = "https://wa.me/phone-number" }, - # { youtube = "https://youtube.com/username" }, - # { ko-fi = "https://ko-fi.com/username" }, - # ] diff --git a/config/_default/languages.ja.toml b/config/_default/languages.ja.toml new file mode 100644 index 0000000..22a2cc7 --- /dev/null +++ b/config/_default/languages.ja.toml @@ -0,0 +1,24 @@ +languageCode = "ja" +languageName = "Japanese" +displayName = "日本語" +isoCode = "ja" +weight = 1 +rtl = false + +title = "EveRun since 1989" +logo = "img/logo.jpg" +description = "東北大学のランニングサークル・イブランのホームページです" +# copyright = "Copy, _right?_ :thinking_face:" + +dateFormat = "2006-01-02" + +[author] + name = "東北大学ランニングサークル・イブラン" + image = "img/logo.jpg" + headline = "現役メンバーを募集中!我こそはという人はご連絡ください!" + bio = "東北大学の有志によるランニングサークルです。陸上部とは違い、そこまで本気にならずに、好きなペースで、好きな距離を走るサークルです。" + links = [ + { twitter = "https://twitter.com/everun1989" }, + { facebook = "https://www.facebook.com/groups/everun/" }, + { instagram = "https://instagram.com/everun1982" }, + ] diff --git a/config/_default/menus.en.toml b/config/_default/menus.ja.toml similarity index 64% rename from config/_default/menus.en.toml rename to config/_default/menus.ja.toml index 384fc92..c5a1954 100644 --- a/config/_default/menus.en.toml +++ b/config/_default/menus.ja.toml @@ -1,7 +1,7 @@ # -- Main Menu -- # The main menu is displayed in the header at the top of the page. # Acceptable parameters are name, pageRef, page, url, title, weight. -# +# # The simplest menu configuration is to provide: # name = The name to be displayed for this menu link # pageRef = The identifier of the page or section to link to @@ -10,33 +10,28 @@ # overridden by providing a weight value. The menu will then be # ordered by weight from lowest to highest. -#[[main]] -# name = "Blog" -# pageRef = "posts" -# weight = 10 +[[main]] + name = "イブランについて" + pageRef = "about" + weight = 10 -#[[main]] -# name = "Categories" -# pageRef = "categories" -# weight = 20 +[[main]] + name = "スケジュール" + pageRef = "schedule" + weight = 20 -#[[main]] -# name = "Tags" -# pageRef = "tags" -# weight = 30 +[[main]] + name = "活動の記録" + pageRef = "posts" + weight = 30 +[[main]] + name = "執筆者" + pageRef = "authors" + weight = 50 # -- Footer Menu -- # The footer menu is displayed at the bottom of the page, just before # the copyright notice. Configure as per the main menu above. -# [[footer]] -# name = "Tags" -# pageRef = "tags" -# weight = 10 - -# [[footer]] -# name = "Categories" -# pageRef = "categories" -# weight = 20 diff --git a/config/_default/params.toml b/config/_default/params.toml index bfb00e4..102c83f 100644 --- a/config/_default/params.toml +++ b/config/_default/params.toml @@ -3,21 +3,21 @@ # customise the display of your website. # # Refer to the theme docs for more details about each of these parameters. -# https://nunocoracao.github.io/blowfish/docs/configuration/#theme-parameters +# https://blowfish.page/docs/configuration/#theme-parameters colorScheme = "blowfish" defaultAppearance = "light" # valid options: light or dark autoSwitchAppearance = true enableSearch = true -enableCodeCopy = true +enableCodeCopy = false -# mainSections = ["section1", "section2"] +mainSections = ["posts"] # robots = "" # disableImageOptimization = false -# defaultBackgroundImage = "IMAGE.jpg" # used as default for background images +# defaultBackgroundImage = "IMAGE.jpg" # used as default for background images [header] layout = "basic" # valid options: basic, fixed @@ -32,12 +32,12 @@ enableCodeCopy = true [homepage] layout = "profile" # valid options: page, profile, hero, card, background, custom #homepageImage = "IMAGE.jpg" # used in: hero, and card - showRecent = false + showRecent = true showRecentItems = 5 - showMoreLink = false + showMoreLink = true showMoreLinkDest = "/posts" - cardView = false - cardViewScreenWidth = false + cardView = true + cardViewScreenWidth = true layoutBackgroundBlur = false # only used when layout equals background [article] @@ -45,42 +45,42 @@ enableCodeCopy = true #showViews = true #showLikes = true showDateUpdated = false - showAuthor = true + showAuthor = false showHero = true - heroStyle = "basic" # valid options: basic, big, background, thumbAndBackground - layoutBackgroundBlur = false # only used when heroStyle equals background or thumbAndBackground + heroStyle = "background" # valid options: basic, big, background, thumbAndBackground + layoutBackgroundBlur = true # only used when heroStyle equals background or thumbAndBackground layoutBackgroundHeaderSpace = true # only used when heroStyle equals background showBreadcrumbs = true showDraftLabel = true - showEdit = true + showEdit = false # editURL = "https://github.com/username/repo/" - editAppendPath = true - seriesOpened = false + editAppendPath = false + seriesOpened = true showHeadingAnchors = true showPagination = true invertPagination = false showReadingTime = true showTableOfContents = true - showTaxonomies = false - showAuthorsBadges = false + showTaxonomies = true + showAuthorsBadges = true showWordCount = true showSummary = true - sharingLinks = [ "linkedin", "twitter", "whatsapp", "pinterest", "reddit", "facebook", "email"] + sharingLinks = false [list] #showHero = true #heroStyle = "background" # valid options: basic, big, background, thumbAndBackground #layoutBackgroundBlur = true # only used when heroStyle equals background or thumbAndBackground #layoutBackgroundHeaderSpace = true # only used when heroStyle equals background - showBreadcrumbs = false - showSummary = false + showBreadcrumbs = true + showSummary = true #showViews = true #showLikes = true showTableOfContents = false - showCards = false + showCards = true groupByYear = true - cardView = false - cardViewScreenWidth = false + cardView = true + cardViewScreenWidth = true [sitemap] excludedKinds = [] @@ -89,22 +89,22 @@ enableCodeCopy = true showTermCount = true #showHero = true #heroStyle = "background" # valid options: basic, big, background, thumbAndBackground - showBreadcrumbs = false + showBreadcrumbs = true #showViews = false #showLikes = false #showTableOfContents = true - #cardView = false + cardView = true [term] #showHero = true #heroStyle = "background" # valid options: basic, big, background, thumbAndBackground - showBreadcrumbs = false + showBreadcrumbs = true #showViews = false #showLikes = false #showTableOfContents = true - #groupByYear = false - #cardViewScreenWidth = false - #cardView = false + groupByYear = true + cardViewScreenWidth = true + cardView = true [firebase] # apiKey = "XXXXXX" diff --git a/config/_default/taxonomies.toml b/config/_default/taxonomies.toml new file mode 100644 index 0000000..f8f5ff8 --- /dev/null +++ b/config/_default/taxonomies.toml @@ -0,0 +1,2 @@ +topic = "topics" +author = "authors" From 4026ddbe805cddc669216bc97ceca6e645e33a22 Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Sun, 1 Jan 2023 10:17:21 +0900 Subject: [PATCH 08/13] =?UTF-8?q?=E5=9F=B7=E7=AD=86=E8=80=85=E3=83=87?= =?UTF-8?q?=E3=83=BC=E3=82=BF=E3=82=92=E4=BD=9C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/authors/武蔵一弘.json | 15 +++++++++++++++ data/authors/管理人.json | 10 ++++++++++ 2 files changed, 25 insertions(+) create mode 100644 data/authors/武蔵一弘.json create mode 100644 data/authors/管理人.json diff --git a/data/authors/武蔵一弘.json b/data/authors/武蔵一弘.json new file mode 100644 index 0000000..bd7478d --- /dev/null +++ b/data/authors/武蔵一弘.json @@ -0,0 +1,15 @@ +{ + "name": "武蔵一弘", + "image" : "img/musashi.png", + "bio": "2008年に文学部に入学しました。大学院の修士で卒業したので、6-7年ほどイブランにはお世話になりました。今はIT系の会社に勤めています。", + "social": [ + { "link": "https://blog.kazu634.com/" }, + { "twitter": "https://twitter.com/MusashiKazuhiro" }, + { "facebook": "https://facebook.com/kazu634" }, + { "linkedin": "https://linkedin.com/in/一弘-武蔵-b90bba54" }, + { "github": "https://github.com/kazu634" }, + { "link": "https://www.strava.com/athletes/89291248" }, + { "flickr": "https://www.flickr.com/photos/42332031@N02/" }, + { "foursquare": "https://foursquare.com/musashikazuhiro" } + ] +} diff --git a/data/authors/管理人.json b/data/authors/管理人.json new file mode 100644 index 0000000..34d5a7c --- /dev/null +++ b/data/authors/管理人.json @@ -0,0 +1,10 @@ +{ + "name": "管理人", + "image" : "img/logo.jpg", + "bio": "東北大学の有志によるランニングサークルです。陸上部とは違い、そこまで本気にならずに、好きなペースで、好きな距離を走るサークルです。", + "social": [ + { "twitter": "https://twitter.com/everun1989" }, + { "facebook": "https://facebook.com/groups/everun" }, + { "instagram": "https://foursquare.com/everun1989" } + ] +} From 3c94cb3b80d149940139e1661d59389f098d5ef3 Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Sun, 1 Jan 2023 10:26:04 +0900 Subject: [PATCH 09/13] =?UTF-8?q?=E4=BB=99=E5=8F=B0=E3=83=8F=E3=83=BC?= =?UTF-8?q?=E3=83=95=E3=83=9E=E3=83=A9=E3=82=BD=E3=83=B3=E3=81=AE=E8=A8=98?= =?UTF-8?q?=E4=BA=8B=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../posts/2022-11-sendai-half-marathon/featured.jpg | 3 +++ content/posts/2022-11-sendai-half-marathon/index.md | 10 ++++++++++ 2 files changed, 13 insertions(+) create mode 100755 content/posts/2022-11-sendai-half-marathon/featured.jpg create mode 100644 content/posts/2022-11-sendai-half-marathon/index.md diff --git a/content/posts/2022-11-sendai-half-marathon/featured.jpg b/content/posts/2022-11-sendai-half-marathon/featured.jpg new file mode 100755 index 0000000..aca2ff9 --- /dev/null +++ b/content/posts/2022-11-sendai-half-marathon/featured.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f90ce5ef6342e1c63428c1f73a5378449c9dfbbc6401501ad83d4642c6a5014c +size 47057 diff --git a/content/posts/2022-11-sendai-half-marathon/index.md b/content/posts/2022-11-sendai-half-marathon/index.md new file mode 100644 index 0000000..51c7363 --- /dev/null +++ b/content/posts/2022-11-sendai-half-marathon/index.md @@ -0,0 +1,10 @@ +--- +title: "[外部リンク] 仙台ハーフマラソン2023の開催について" +date: 2022-11-26 +externalUrl: "https://www.sendaihalf.com/news/news.html?id=539" +summary: "仙台ハーフマラソン2023の開催についてのアナウンスがありました。ただ、通常エントリーでの募集は今年もないようです。" +topics: "仙台ハーフマラソン" +authors: + - "管理人" +--- + From b62f21c9de2768fec2fd280e70e13851e15b5712 Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Sun, 1 Jan 2023 10:29:29 +0900 Subject: [PATCH 10/13] =?UTF-8?q?=E6=9D=B1=E5=8C=97=E5=BE=A9=E8=88=88?= =?UTF-8?q?=E3=83=9E=E3=83=A9=E3=82=BD=E3=83=B3=E3=81=AE=E8=A8=98=E4=BA=8B?= =?UTF-8?q?=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../posts/2022-11-tohoku-fukko-marathon/featured.jpg | 3 +++ content/posts/2022-11-tohoku-fukko-marathon/index.md | 10 ++++++++++ 2 files changed, 13 insertions(+) create mode 100755 content/posts/2022-11-tohoku-fukko-marathon/featured.jpg create mode 100644 content/posts/2022-11-tohoku-fukko-marathon/index.md diff --git a/content/posts/2022-11-tohoku-fukko-marathon/featured.jpg b/content/posts/2022-11-tohoku-fukko-marathon/featured.jpg new file mode 100755 index 0000000..aca2ff9 --- /dev/null +++ b/content/posts/2022-11-tohoku-fukko-marathon/featured.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f90ce5ef6342e1c63428c1f73a5378449c9dfbbc6401501ad83d4642c6a5014c +size 47057 diff --git a/content/posts/2022-11-tohoku-fukko-marathon/index.md b/content/posts/2022-11-tohoku-fukko-marathon/index.md new file mode 100644 index 0000000..16b1b4e --- /dev/null +++ b/content/posts/2022-11-tohoku-fukko-marathon/index.md @@ -0,0 +1,10 @@ +--- +title: "[外部リンク] 東北復興マラソン2023の開催について" +date: 2022-11-06 +externalUrl: "https://fukko-marathon.jp/news/201900000250.html" +summary: "東北復興マラソン2023の開催についてのアナウンスがありました" +topics: "東北復興マラソン" +authors: + - "管理人" +--- + From 9554a8df538bd1471961cd642a8874f69c1ef8a8 Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Sun, 1 Jan 2023 10:31:12 +0900 Subject: [PATCH 11/13] =?UTF-8?q?2022=E5=B9=B4=E3=81=AE=E6=8C=AF=E3=82=8A?= =?UTF-8?q?=E8=BF=94=E3=82=8A=E8=A8=98=E4=BA=8B=E3=82=92=E6=8A=95=E7=A8=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2022-12-looking-back-2022/featured.png | 3 + .../posts/2022-12-looking-back-2022/index.md | 66 +++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100755 content/posts/2022-12-looking-back-2022/featured.png create mode 100644 content/posts/2022-12-looking-back-2022/index.md diff --git a/content/posts/2022-12-looking-back-2022/featured.png b/content/posts/2022-12-looking-back-2022/featured.png new file mode 100755 index 0000000..1e1e5fc --- /dev/null +++ b/content/posts/2022-12-looking-back-2022/featured.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1463655552f7edd4f34c619fef3f939977a9daac8c06fec27e5ed9778b9e432 +size 6358 diff --git a/content/posts/2022-12-looking-back-2022/index.md b/content/posts/2022-12-looking-back-2022/index.md new file mode 100644 index 0000000..32df225 --- /dev/null +++ b/content/posts/2022-12-looking-back-2022/index.md @@ -0,0 +1,66 @@ +--- +title: "Stravaで振り返る今年のランニング・サイクリング" +date: 2022-12-31 +summary: "Stravaの記録で今年一年の運動を振り返ってみました" +topics: "雑記" +authors: + - "武蔵一弘" +--- + +イブランOBの武蔵です。今年も大晦日になりましたの、一年を振り返ってみます。 + +## はじめに +今年最大の変化は、 + +- Runkeeperから[Strava](https://www.strava.com/)に利用するアプリを変えた +- Apple Watchを利用し始めた + +でした。Apple Watchはお散歩でも活動記録として記録してくれて、Stravaに自動登録してくれます。今年一年はあまり運動できなかったのですが、これでだいぶ距離を稼げた気がします。 + +## Stravaの記録を振り返る +[Strava](https://www.strava.com/)の記録をグラフ化すると、このようになりました。 + +{{< chart >}} +type: 'bar', +data: { + labels: ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'], + datasets: [ + { + label: 'ランニング', + data: [105.06, 89, 65, 45, 63.13, 9.84, 0, 29.44, 24, 44.68, 49.31, 28.93, ], + }, + { + label: 'サイクリング', + data: [35.94, 0, 0, 0, 0, 27.08, 0, 0, 0, 22.7, 22.78, 0, ], + }, + { + label: 'ウォーキング', + data: [0, 0, 0, 0, 6.87, 19.08, 20, 18.56, 0, 1.62, 33.91, 58.07, ], + } + ] +}, +options: { + scales: { + x: { + stacked: true + }, + y: { + stacked: true + } + } +} +{{< /chart >}} + +### ランニングについて +3月くらいから忙しくなり始め、7月がどん底だったのが、はっきりとランニングの距離に反映されています。。来年はもう少しゆっくり仕事したいです。 + +### サイクリングについて +ランニングすらできていないのに、サイクリングをする元気もあるはずもなく、かなり低空飛行でした。。来年はもっと運動したいです。 + +### ウォーキングについて +これではいかんということで、自宅から蒲田のサテライトオフィスまでウォーキングし始めたというのと、Apple Watchで記録してStrava連携できることに気づいたことにより、年の後半はウォーキングの距離が伸びています。 + +ウォーキングがなかったら、あんまり運動できていないですね。 + +## 2023年に向けて +ランニングの時間を増やすというのと、もう少しサイクリングの時間を増やしていきたいです。 From d63aab79862060753768e476d09dc45e0b991a47 Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Sun, 1 Jan 2023 10:32:33 +0900 Subject: [PATCH 12/13] =?UTF-8?q?=E5=BF=98=E5=B9=B4=E4=BC=9A=E3=81=AE?= =?UTF-8?q?=E8=A8=98=E4=BA=8B=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../featured-2022-12-everun-year-end.png | 3 ++ content/posts/2022-12-year-end-party/index.md | 33 +++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100755 content/posts/2022-12-year-end-party/featured-2022-12-everun-year-end.png create mode 100644 content/posts/2022-12-year-end-party/index.md diff --git a/content/posts/2022-12-year-end-party/featured-2022-12-everun-year-end.png b/content/posts/2022-12-year-end-party/featured-2022-12-everun-year-end.png new file mode 100755 index 0000000..03d0cef --- /dev/null +++ b/content/posts/2022-12-year-end-party/featured-2022-12-everun-year-end.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdcae465e24a349f213c66cc10ed5334a6f46d9fc5c393ce3f045bd00fe4a14d +size 4247495 diff --git a/content/posts/2022-12-year-end-party/index.md b/content/posts/2022-12-year-end-party/index.md new file mode 100644 index 0000000..a8ec5d4 --- /dev/null +++ b/content/posts/2022-12-year-end-party/index.md @@ -0,0 +1,33 @@ +--- +title: "OB・OGによる忘年会が今年も開催されました" +date: 2022-12-04 +summary: "今年もOB・OGによる忘年会が開催されました。" +topics: "活動" +authors: + - "管理人" +--- + +## 忘年会 +12月の第一土曜日はイブランの忘年会として設定されています。毎年、この日を楽しみにしているわけですが、今年も開催されました!コロナのご時世ではあるものの、出歩く人も増えている状況の2022年は、リアルとオンラインのハイブリッド型で開催することとしました。 + +当日、リアル会場には6名参加、オンラインでは + +- 松山の居酒屋に集まって2名参加 +- ご自宅から3名参加 + +という参加状況でした。 + +完全オンラインだと自宅から参加できますが、人数が多いとなかなか懇親ができなかったのですが、今回はリアル組はそれなりに親睦を深められたと思います。 + +## 今後の活動について +今後の活動について、忘年会にて話しました。みなさん、奮ってご参加ください! + +### 2023年の活動について +忘年会にて来年の活動計画を立てました。 + +1. 【フルマラソン】2023年11月5日(日)東北・みやぎ復興マラソン皆で走りましょう。 + +2. 【忘年会】・2023年12月2日(土) + +### 創立35周年の集まりについて +- 35周年2024年12月7日(土)~8日(日)@箱根 From 421d3be1f83d07521ab3d4d58bb5a3ec2283602b Mon Sep 17 00:00:00 2001 From: Kazuhiro MUSASHI Date: Sun, 1 Jan 2023 10:33:29 +0900 Subject: [PATCH 13/13] =?UTF-8?q?=E5=BF=98=E5=B9=B4=E4=BC=9A2022=E3=82=92?= =?UTF-8?q?=E6=94=AF=E3=81=88=E3=82=8B=E6=8A=80=E8=A1=93=E3=81=AE=E8=A8=98?= =?UTF-8?q?=E4=BA=8B=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../featured-2022-12-everun-year-end.png | 3 +++ .../2022-12-year-end-party-behind-the-scene/index.md | 10 ++++++++++ 2 files changed, 13 insertions(+) create mode 100755 content/posts/2022-12-year-end-party-behind-the-scene/featured-2022-12-everun-year-end.png create mode 100644 content/posts/2022-12-year-end-party-behind-the-scene/index.md diff --git a/content/posts/2022-12-year-end-party-behind-the-scene/featured-2022-12-everun-year-end.png b/content/posts/2022-12-year-end-party-behind-the-scene/featured-2022-12-everun-year-end.png new file mode 100755 index 0000000..03d0cef --- /dev/null +++ b/content/posts/2022-12-year-end-party-behind-the-scene/featured-2022-12-everun-year-end.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdcae465e24a349f213c66cc10ed5334a6f46d9fc5c393ce3f045bd00fe4a14d +size 4247495 diff --git a/content/posts/2022-12-year-end-party-behind-the-scene/index.md b/content/posts/2022-12-year-end-party-behind-the-scene/index.md new file mode 100644 index 0000000..3e4f85a --- /dev/null +++ b/content/posts/2022-12-year-end-party-behind-the-scene/index.md @@ -0,0 +1,10 @@ +--- +title: "[外部リンク] 忘年会2022を支えた技術" +date: 2022-12-05 +externalUrl: "https://blog.kazu634.com/posts/2022/2022-12-04-how-to-conduct-hybrid-drink-party/" +summary: "OB・OGにて実施した忘年会2022ではリアルとオンラインのハイブリッド飲み会を行いました。その際のノウハウを解説します…" +topics: "雑記" +authors: + - "武蔵一弘" +--- +