Merge pull request 'ドラフトのサイトを作成' (#1) from draft into master
Reviewed-on: #1
This commit is contained in:
commit
9d469be5b7
|
@ -0,0 +1,2 @@
|
|||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.jpg filter=lfs diff=lfs merge=lfs -text
|
|
@ -0,0 +1,3 @@
|
|||
.hugo_build.lock
|
||||
assets
|
||||
resources
|
|
@ -0,0 +1,4 @@
|
|||
[submodule "themes/blowfish"]
|
||||
path = themes/blowfish
|
||||
url = https://github.com/nunocoracao/blowfish.git
|
||||
branch = main
|
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env rake
|
||||
|
||||
Dir['tasks/**/*.rake'].each { |path| load path }
|
|
@ -1,3 +0,0 @@
|
|||
baseURL = 'http://example.org/'
|
||||
languageCode = 'en-us'
|
||||
title = 'My New Hugo Site'
|
|
@ -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/'
|
|
@ -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" },
|
||||
]
|
|
@ -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
|
|
@ -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.
|
||||
|
||||
|
|
@ -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 = ""
|
|
@ -0,0 +1,2 @@
|
|||
topic = "topics"
|
||||
author = "authors"
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f90ce5ef6342e1c63428c1f73a5378449c9dfbbc6401501ad83d4642c6a5014c
|
||||
size 47057
|
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: "[外部リンク] 仙台ハーフマラソン2023の開催について"
|
||||
date: 2022-11-26
|
||||
externalUrl: "https://www.sendaihalf.com/news/news.html?id=539"
|
||||
summary: "仙台ハーフマラソン2023の開催についてのアナウンスがありました。ただ、通常エントリーでの募集は今年もないようです。"
|
||||
topics: "仙台ハーフマラソン"
|
||||
authors:
|
||||
- "管理人"
|
||||
---
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f90ce5ef6342e1c63428c1f73a5378449c9dfbbc6401501ad83d4642c6a5014c
|
||||
size 47057
|
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: "[外部リンク] 東北復興マラソン2023の開催について"
|
||||
date: 2022-11-06
|
||||
externalUrl: "https://fukko-marathon.jp/news/201900000250.html"
|
||||
summary: "東北復興マラソン2023の開催についてのアナウンスがありました"
|
||||
topics: "東北復興マラソン"
|
||||
authors:
|
||||
- "管理人"
|
||||
---
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d1463655552f7edd4f34c619fef3f939977a9daac8c06fec27e5ed9778b9e432
|
||||
size 6358
|
|
@ -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年に向けて
|
||||
ランニングの時間を増やすというのと、もう少しサイクリングの時間を増やしていきたいです。
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fdcae465e24a349f213c66cc10ed5334a6f46d9fc5c393ce3f045bd00fe4a14d
|
||||
size 4247495
|
|
@ -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:
|
||||
- "武蔵一弘"
|
||||
---
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fdcae465e24a349f213c66cc10ed5334a6f46d9fc5c393ce3f045bd00fe4a14d
|
||||
size 4247495
|
|
@ -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日(日)@箱根
|
|
@ -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" }
|
||||
]
|
||||
}
|
|
@ -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" }
|
||||
]
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
かつて存在していた東北大学・ランニングサークル Everun のサークルページになります。放置していたけれど、リニューアルをします。
|
|
@ -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
|
|
@ -0,0 +1 @@
|
|||
Subproject commit c62cad5d150800bca50a11b60d2e012f6be98577
|
Loading…
Reference in New Issue