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 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 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/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/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..b193dfb --- /dev/null +++ b/config/_default/config.toml @@ -0,0 +1,35 @@ +# -- Site Configuration -- +# Refer to the theme docs for more details about each of these parameters. +# https://blowfish.page/docs/getting-started/ + +theme = "blowfish" +baseURL = "https://everun.club/" +defaultContentLanguage = "ja" +hasCJKLanguage = true + +enableRobotsTXT = true +paginate = 20 +summaryLength = 80 + +buildDrafts = false +buildFuture = false + +# googleAnalytics = "G-XXXXXXXXX" + +[imaging] + anchor = 'Center' + +[taxonomies] + author = "authors" + series = "series" + +[sitemap] + changefreq = 'daily' + filename = 'sitemap.xml' + priority = 0.5 + +[outputs] + home = ["HTML", "RSS", "JSON"] + +[permalinks] + posts = '/:year/:month/:filename/' 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/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.ja.toml b/config/_default/menus.ja.toml new file mode 100644 index 0000000..c5a1954 --- /dev/null +++ b/config/_default/menus.ja.toml @@ -0,0 +1,37 @@ +# -- 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 = "イブランについて" + pageRef = "about" + weight = 10 + +[[main]] + name = "スケジュール" + pageRef = "schedule" + weight = 20 + +[[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. + + diff --git a/config/_default/params.toml b/config/_default/params.toml new file mode 100644 index 0000000..102c83f --- /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://blowfish.page/docs/configuration/#theme-parameters + +colorScheme = "blowfish" +defaultAppearance = "light" # valid options: light or dark +autoSwitchAppearance = true + +enableSearch = true +enableCodeCopy = false + +mainSections = ["posts"] +# 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 = true + showRecentItems = 5 + showMoreLink = true + showMoreLinkDest = "/posts" + cardView = true + cardViewScreenWidth = true + layoutBackgroundBlur = false # only used when layout equals background + +[article] + showDate = true + #showViews = true + #showLikes = true + showDateUpdated = false + showAuthor = false + 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 = true + showDraftLabel = true + showEdit = false + # editURL = "https://github.com/username/repo/" + editAppendPath = false + seriesOpened = true + showHeadingAnchors = true + showPagination = true + invertPagination = false + showReadingTime = true + showTableOfContents = true + showTaxonomies = true + showAuthorsBadges = true + showWordCount = true + showSummary = true + 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 = true + showSummary = true + #showViews = true + #showLikes = true + showTableOfContents = false + showCards = true + groupByYear = true + cardView = true + cardViewScreenWidth = true + +[sitemap] + excludedKinds = [] + +[taxonomy] + showTermCount = true + #showHero = true + #heroStyle = "background" # valid options: basic, big, background, thumbAndBackground + showBreadcrumbs = true + #showViews = false + #showLikes = false + #showTableOfContents = true + cardView = true + +[term] + #showHero = true + #heroStyle = "background" # valid options: basic, big, background, thumbAndBackground + showBreadcrumbs = true + #showViews = false + #showLikes = false + #showTableOfContents = true + groupByYear = true + cardViewScreenWidth = true + cardView = true + +[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 = "" 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" 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: + - "管理人" +--- + 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: + - "管理人" +--- + 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年に向けて +ランニングの時間を増やすというのと、もう少しサイクリングの時間を増やしていきたいです。 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: + - "武蔵一弘" +--- + 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日(日)@箱根 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" } + ] +} diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..5f7cdf2 --- /dev/null +++ b/readme.md @@ -0,0 +1 @@ +かつて存在していた東北大学・ランニングサークル Everun のサークルページになります。放置していたけれど、リニューアルをします。 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 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