diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..3ab496f --- /dev/null +++ b/.gitattributes @@ -0,0 +1,10 @@ +# Example of a `.gitattributes` file which reclassifies `.rb` files as Java: +# +# *.rb linguist-language=Java +# +# See: https://github.com/github-linguist/linguist/blob/master/docs/overrides.md + +# Mark Jekyll-based markups as Ruby +_includes/* linguist-language=Ruby +_layouts/* linguist-language=Ruby +_sass/* linguist-language=Ruby diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..5aa145f --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c725840..20026ea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,13 @@ jobs: - name: 💎 Setup Ruby uses: ruby/setup-ruby@v1 with: - bundler-cache: true + bundler-cache: false + + - name: 🧪 Install gems + run: | + bundle config set with 'test' + bundle config set path 'vendor/bundle' + bundle install --jobs 4 --retry 3 - name: 🔧 Build & Test run: | @@ -28,14 +34,6 @@ jobs: JEKYLL_ENV=production bundle exec jekyll doctor SKIP_BUILD=true bundle exec rake test - - name: 🔔 Notify results - env: - IDOBATA_GITHUB_ACTIONS: ${{ secrets.IDOBATA_GITHUB_ACTIONS }} - if: always() && ( env.IDOBATA_GITHUB_ACTIONS!= null ) - uses: yasslab/idobata_notify@main # https://github.com/yasslab/idobata_notify - with: - idobata_hook_url: ${{ env.IDOBATA_GITHUB_ACTIONS }} - # Deploy job is triggered only pushed to main branch && CI passed deploy: if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} @@ -43,14 +41,14 @@ jobs: runs-on: ubuntu-latest steps: - name: ☑️ Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 1 - name: 💎 Setup Ruby uses: ruby/setup-ruby@v1 with: - bundler-cache: true + bundler-cache: false - name: 🧪 Install gems run: | diff --git a/.ruby-version b/.ruby-version index 860487c..0aec50e 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.7.1 +3.1.4 diff --git a/404.html b/404.html index 086a5c9..3c7626d 100644 --- a/404.html +++ b/404.html @@ -18,8 +18,8 @@
-

404

+

Page Not Found

-

Page not found :(

-

The requested page could not be found.

+

お探しのページが見つかりませんでした 🥹

+

リンク切れであれば GitHub でご報告いただけると嬉しいです 🙏

diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..8cf163a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM ruby:3.1.3 + +RUN gem install jekyll --version 4.3.1 +RUN gem install bundler --version 2.4.2 + +WORKDIR /src +ENTRYPOINT bundle install && bundle exec jekyll serve \ + --host 0.0.0.0 --config _config.yml diff --git a/Gemfile b/Gemfile index c72f9a4..c8c894e 100644 --- a/Gemfile +++ b/Gemfile @@ -1,11 +1,8 @@ source "https://rubygems.org" -ruby '2.7.1' - gem "jekyll" -gem "minima" # default theme for new Jekyll sites -gem 'rake' # Enable Rakefile to run tasks -gem "webrick" #, "~> 1.7" +gem 'rake' # Enable Rakefile to run tasks +gem 'mini_racer' # Enable to run 'docker-compose up' group :jekyll_plugins do gem 'jekyll-feed' diff --git a/Gemfile.lock b/Gemfile.lock index f9188a2..f58d266 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,51 +1,59 @@ GEM remote: https://rubygems.org/ specs: - addressable (2.8.0) - public_suffix (>= 2.0.2, < 5.0) + addressable (2.8.1) + public_suffix (>= 2.0.2, < 6.0) + async (2.3.1) + console (~> 1.10) + io-event (~> 1.1) + timers (~> 4.1) coderay (1.1.3) colorator (1.1.0) - concurrent-ruby (1.1.9) + concurrent-ruby (1.1.10) + console (1.16.2) + fiber-local cssminify2 (2.0.1) em-websocket (0.5.3) eventmachine (>= 0.12.9) http_parser.rb (~> 0) - ethon (0.15.0) + ethon (0.16.0) ffi (>= 1.15.0) eventmachine (1.2.7) - eventmachine (1.2.7-x64-mingw32) execjs (2.8.1) - ffi (1.15.4) - ffi (1.15.4-x64-mingw32) + ffi (1.15.5) + fiber-local (1.0.0) forwardable-extended (2.6.0) - html-proofer (3.19.2) + google-protobuf (3.21.12) + html-proofer (5.0.3) addressable (~> 2.3) - mercenary (~> 0.3) - nokogumbo (~> 2.0) - parallel (~> 1.3) + async (~> 2.1) + nokogiri (~> 1.13) rainbow (~> 3.0) typhoeus (~> 1.3) yell (~> 2.0) + zeitwerk (~> 2.5) htmlcompressor (0.4.0) http_parser.rb (0.8.0) - i18n (1.8.11) + i18n (1.12.0) concurrent-ruby (~> 1.0) - jekyll (4.2.1) + io-event (1.1.4) + jekyll (4.3.1) addressable (~> 2.4) colorator (~> 1.0) em-websocket (~> 0.5) i18n (~> 1.0) - jekyll-sass-converter (~> 2.0) + jekyll-sass-converter (>= 2.0, < 4.0) jekyll-watch (~> 2.0) - kramdown (~> 2.3) + kramdown (~> 2.3, >= 2.3.1) kramdown-parser-gfm (~> 1.0) liquid (~> 4.0) - mercenary (~> 0.4.0) + mercenary (>= 0.3.6, < 0.5) pathutil (~> 0.9) - rouge (~> 3.0) + rouge (>= 3.0, < 5.0) safe_yaml (~> 1.0) - terminal-table (~> 2.0) - jekyll-feed (0.15.1) + terminal-table (>= 1.8, < 4.0) + webrick (~> 1.7) + jekyll-feed (0.17.0) jekyll (>= 3.7, < 5.0) jekyll-include-cache (0.2.1) jekyll (>= 3.7, < 5.0) @@ -58,73 +66,68 @@ GEM jekyll (>= 3.5) json-minify (~> 0.0.3) uglifier (~> 4.1) - jekyll-sass-converter (2.1.0) - sassc (> 2.0.1, < 3.0) - jekyll-seo-tag (2.7.1) - jekyll (>= 3.8, < 5.0) + jekyll-sass-converter (3.0.0) + sass-embedded (~> 1.54) jekyll-sitemap (1.4.0) jekyll (>= 3.7, < 5.0) jekyll-watch (2.2.1) listen (~> 3.0) - json (2.6.1) + json (2.6.3) json-minify (0.0.3) json (> 0) - kramdown (2.3.1) + kramdown (2.4.0) rexml kramdown-parser-gfm (1.1.0) kramdown (~> 2.0) + libv8-node (16.10.0.0-aarch64-linux) + libv8-node (16.10.0.0-arm64-darwin) liquid (4.0.3) - listen (3.7.0) + listen (3.7.1) rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) mercenary (0.4.0) method_source (1.0.0) - mini_portile2 (2.6.1) - minima (2.5.1) - jekyll (>= 3.5, < 5.0) - jekyll-feed (~> 0.9) - jekyll-seo-tag (~> 2.1) - nokogiri (1.12.5) - mini_portile2 (~> 2.6.1) + mini_racer (0.6.3) + libv8-node (~> 16.10.0.0) + nokogiri (1.13.10-aarch64-linux) racc (~> 1.4) - nokogiri (1.12.5-x64-mingw32) + nokogiri (1.13.10-arm64-darwin) racc (~> 1.4) - nokogumbo (2.0.5) - nokogiri (~> 1.8, >= 1.8.4) - parallel (1.21.0) pathutil (0.16.2) forwardable-extended (~> 2.6) pry (0.14.1) coderay (~> 1.1) method_source (~> 1.0) - public_suffix (4.0.6) - racc (1.6.0) - rainbow (3.0.0) + public_suffix (5.0.1) + racc (1.6.2) + rainbow (3.1.1) rake (13.0.6) - rb-fsevent (0.11.0) + rb-fsevent (0.11.2) rb-inotify (0.10.1) ffi (~> 1.0) redcarpet (3.5.1) rexml (3.2.5) - rouge (3.26.1) + rouge (4.0.1) safe_yaml (1.0.5) - sassc (2.4.0) - ffi (~> 1.9) - sassc (2.4.0-x64-mingw32) - ffi (~> 1.9) - terminal-table (2.0.0) - unicode-display_width (~> 1.1, >= 1.1.1) + sass-embedded (1.57.1-aarch64-linux-gnu) + google-protobuf (~> 3.21) + sass-embedded (1.57.1-arm64-darwin) + google-protobuf (~> 3.21) + terminal-table (3.0.2) + unicode-display_width (>= 1.1.1, < 3) + timers (4.3.5) typhoeus (1.4.0) ethon (>= 0.9.0) uglifier (4.2.0) execjs (>= 0.3.0, < 3) - unicode-display_width (1.8.0) + unicode-display_width (2.4.2) webrick (1.7.0) yell (2.2.2) + zeitwerk (2.6.6) PLATFORMS - ruby - x64-mingw32 + aarch64-linux + arm64-darwin-21 DEPENDENCIES html-proofer @@ -134,13 +137,9 @@ DEPENDENCIES jekyll-liquify jekyll-minifier jekyll-sitemap - minima + mini_racer pry rake - webrick - -RUBY VERSION - ruby 2.7.1p83 BUNDLED WITH - 2.2.28 + 2.4.2 diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..c74fb5f --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,7 @@ +Copyright © DojoCon Japan 実行委員会 & 一般社団法人 CoderDojo Japan + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md index 9381a53..1c34773 100644 --- a/README.md +++ b/README.md @@ -38,12 +38,44 @@ # url: URL。例: /session/dojo_report ``` +追加・修正したい場所に応じて、下記リンク先を[上記手順](#white_check_mark-共通ブラウザで情報修正を提案できます)に沿って更新いただけます。 + +- [`events.yml`](https://github.com/coderdojo-japan/dojocon2021.coderdojo.jp/blob/main/_data/events.yml): イベント情報を更新したい +- [`members.yml`](https://github.com/coderdojo-japan/dojocon2021.coderdojo.jp/blob/main/_data/members.yml): スタッフ情報を更新したい +- [`sessions.yml`](https://github.com/coderdojo-japan/dojocon2021.coderdojo.jp/blob/main/_data/sessions.yml): セッション情報を更新したい +- [`sponsors.yml`](https://github.com/coderdojo-japan/dojocon2021.coderdojo.jp/blob/main/_data/sponsors.yml): スポンサー情報を更新したい +- [`workshops.yml`](https://github.com/coderdojo-japan/dojocon2021.coderdojo.jp/blob/main/_data/workshops.yml): ワークショップ情報を更新したい +
-## :hammer_and_wrench: Webサイトの仕組みを改善したい +## :hammer_and_wrench: Webサイトを制作したい + +ローカル環境でWebサイトを修正・確認したい場合は **以下のいずれかの方法** でローカルサーバーを立ち上げてください。 + +### A. Docker 上で構築する方法(推奨) + +```shell +# 下記コマンドでローカル環境にWebサーバーが立ち上がります +$ docker-compose up +``` + +無事にローカルサーバーが立ち上がったら、[http://localhost:4000/](http://localhost:4000/) にアクセスしてWebサイトを修正・確認します。 + +### B. Docker イメージをローカルで作成する方法 + +```shell +# Dockefile から dojocon-japan-2021 イメージを作成する +$ docker build -t dojocon-japan-2021 -f Dockerfile . + +# 下記コマンドでローカル環境にWebサーバーが立ち上がります +$ docker-compose up +``` + +無事にローカルサーバーが立ち上がったら、[http://localhost:4000/](http://localhost:4000/) にアクセスしてWebサイトを修正・確認します。 + -ローカル環境のブラウザで確認したい場合は、次の手順でローカルサーバーを立ち上げてください。 +### C. Ruby をインストールして構築する方法 ```shell # Ruby が入っていることを確認 @@ -56,7 +88,7 @@ $ bundle install $ bundle exec jekyll server ``` -無事にローカルサーバーが立ち上がったら [http://localhost:4000/](http://localhost:4000/) でアクセスできます。 +無事にローカルサーバーが立ち上がったら、[http://localhost:4000/](http://localhost:4000/) にアクセスしてWebサイトを修正・確認します。
@@ -77,15 +109,48 @@ $ bundle exec rake test
-## :yin_yang: 関連リポジトリ +## :octocat: 関連リポジトリ + +- [coderdojo-japan/dojocon2023.coderdojo.jp](https://github.com/coderdojo-japan/dojocon2023.coderdojo.jp) (TBD later) +- [coderdojo-japan/dojocon2020.coderdojo.jp](https://github.com/coderdojo-japan/dojocon2020.coderdojo.jp) +- [coderdojo-japan/dojocon2019.coderdojo.jp](https://github.com/coderdojo-japan/dojocon2019.coderdojo.jp) +- [coderdojo-japan/dojocon2018.coderdojo.jp](https://github.com/coderdojo-japan/dojocon2018.coderdojo.jp) + +
+ +## ♻️ License + +
+ Check out each license + +This web application is developed with many other brilliant works! +Check out the followings if you are interested in. :wink: + +

📝️ Texts, Logos, and Photos

+ +The texts and images, such as logos and photos of [each staff](https://dojocon2021.coderdojo.jp/#staff), are owned by its content holder. Contact its owner, like the maintainer of linked external website or social account, before using them. 🔐 + +

💎 Libraries and Codes

+ +The libraries like [RubyGems](https://rubygems.org/) used in this website have their own licenses. Say, this website uses [Jekyll](https://jekyllrb.com/), created by [The Jekyll Team](https://jekyllrb.com/team/) licensed under [The MIT License](https://github.com/jekyll/jekyll/blob/master/LICENSE). Thanks for their great works to make this website published! 💖 + +The source codes, such as HTML/CSS/JavaScript and Ruby codes not declared before, are published under [The MIT License](https://github.com/coderdojo-japan/dojocon2021.coderdojo.jp/blob/main/LICENSE.md). Feel free to refer, copy, or share them. And contact us if you find something unclear. + +
+ +The MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- :octocat: [coderdojo-japan/dojocon2020.coderdojo.jp](https://github.com/coderdojo-japan/dojocon2020.coderdojo.jp) -- :octocat: [coderdojo-japan/dojocon2019.coderdojo.jp](https://github.com/coderdojo-japan/dojocon2019.coderdojo.jp) -- :octocat: [coderdojo-japan/dojocon2018.coderdojo.jp](https://github.com/coderdojo-japan/dojocon2018.coderdojo.jp) +

-## :busts_in_silhouette: Maintained by +## ☯️️ Copyright -DojoCon Japan 実行委員会 & 一般社団法人 CoderDojo Japan +DojoCon Japan 実行委員会 & 一般社団法人 CoderDojo Japan ([@coderdojo-japan](https://github.com/coderdojo-japan)). diff --git a/Rakefile b/Rakefile index ca3e64a..5cd638a 100644 --- a/Rakefile +++ b/Rakefile @@ -5,24 +5,23 @@ task default: 'test' require 'html-proofer' task test: [:build] do options = { + checks: ['Links', 'Images', 'Scripts', 'OpenGraph', 'Favicon'], allow_hash_href: false, - assume_extension: true, - check_opengraph: true, - check_favicon: true, - check_html: true, disable_external: true, - # checks_to_ignore: %w(ImageCheck), # for debugging + enforce_https: true, # NOTE: You can ignore file, URL, and response as follows - file_ignore: [ + ignore_files: [ /404\.html/, /google(.*)\.html/, ], - #url_ignore: %w(coderdojo.com linkedin.com), - #http_status_ignore: [0, 500, 999], + ignore_urls: [ + %r{^http://coderdojo-nago.com}, # Use REGEX to skip testing URLs in a domain like this + ] + #ignore_status_ignore: [0, 500, 999], } - HTMLProofer.check_directory('./_site', options).run + HTMLProofer.check_directory('_site', options).run end # Enable 'build' to flush cache files via 'clean' diff --git a/_config.yml b/_config.yml index 07eb93f..5bb49c2 100644 --- a/_config.yml +++ b/_config.yml @@ -1,16 +1,17 @@ # Site settings # You can create any custom variable you would like, -# and they will be accessible like {{ site.myvariable }}. +# and they will be accessible like {{ site.your_variable }}. year: 2021 title: DojoCon Japan subtitle: '見渡す' -description: >- # this means to ignore newlines until "baseurl:" +description: >- CoderDojo コミュニティによる日本最大の祭典「DojoCon Japan」は CoderDojo 関係者を対象としたカンファレンスです。運営ノウハウの共有や関係者同士の交流などを目的として毎年開催されています。 url: https://dojocon2021.coderdojo.jp date_published: 2021年11月13日 date_event: 2021年12月18日(土曜)10:00〜 -venue: "オンライン
(セッションは YouTube でライブ配信します)" +venue: >- + オンライン
(セッションは YouTube でライブ配信します) price: 無料 twitter: DojoConJapan @@ -18,7 +19,6 @@ facebook: DojoConJapan email: dojocon2021@coderdojo.jp # Build settings -theme: minima plugins: - jekyll-feed - jekyll-include-cache diff --git a/_data/events.yml b/_data/events.yml index 6cda180..98e3776 100644 --- a/_data/events.yml +++ b/_data/events.yml @@ -4,7 +4,7 @@ # url: - title: Dojo中継 - text: DojoCon Japan開催日当日に全国各地で開催されるCoderDojoをZoomでつなぐ場外企画です。DojoCon Japan 2021 のYouTubeライブやオンライン会場を楽しみながら、各地の開催会場でも盛りあがっちゃいましょう!
【参加予定会場】CoderDojo滝沢、富谷、会津、矢吹、となみ、飯能、末広町、品川御殿山、久地、天白、安城、灘、奈良、長門、香椎、名護(12/16時点) + text: DojoCon Japan開催日当日に全国各地で開催されるCoderDojoをZoomでつなぐ場外企画です。DojoCon Japan 2021 のYouTubeライブやオンライン会場を楽しみながら、各地の開催会場でも盛りあがっちゃいましょう!
【参加予定会場】CoderDojo滝沢、富谷、会津、矢吹、となみ、飯能、末広町、品川御殿山、赤羽、久地、天白、安城、灘、奈良、長門、香椎、名護(12/17時点) img: DojoNetwork.webp time: 10:00-18:00 tag: 特別場外企画 diff --git a/_data/members.yml b/_data/members.yml index e877bad..cf6da22 100644 --- a/_data/members.yml +++ b/_data/members.yml @@ -2,6 +2,57 @@ # site: ホームページやSNSなどのリンク # img: 表示するアイコン画像。ない場合設定しなくてもよい。ディレクトリ /img/staff/ 内に配置。 -- name: '@yasulab' - site: 'https://twitter.com/yasulab' - img: 'https://yasslab.jp/img/photos/yasulab.jpg' +- name: 増岡 秀樹 + site: https://ja.gravatar.com/hansendo + img: masuoka_hideki.png +- name: 吉川 圭太 + site: https://www.facebook.com/keita.yoshikawa/ + img: yoshikawa_keita.webp +- name: まゆさん⤴︎ + site: https://twitter.com/manidesign_i + img: mayusan.jpg +- name: Keisuke Sawa + site: https://twitter.com/swamptk + img: sawa_keisuke.png +- name: Katz Ueno + site: https://katzueno.com + img: ueno_katz.jpg +- name: 若林 潤一 + site: https://twitter.com/Jun1W + img: wakabayashi_junichi.jpg +- name: 後藤 洋哉 + site: https://coderdojo-inazawash.com + img: goto_hiroya.jpg +- name: 井上@津山 + site: https://www.facebook.com/CoderDojoTsuyama/ + img: inoue.jpg +- name: 井川 健一 + site: https://coderdojo-mito.com/ + img: ikawa_kenichi.jpg +- name: Genki Ando + site: https://twitter.com/gnk77 + img: ando_genki.jpg +- name: 安川 要平 + site: https://twitter.com/yasulab + img: yasulab.jpg +- name: 曽我 悠真 + site: https://twitter.com/ymsg19 + img: soga_yuma.jpg +- name: 濱田 康 + site: https://linevoom.line.me/user/_dThsoIQo1WNmIYOd6T8nAWWCUYR4QdY-1DOnPE4 + img: hamada_yasushi.jpg +- name: 宮島 衣瑛 + img: miyajima_kirie.jpg +- name: 宇津 義一 + img: utsu_yoshikazu.jpg +- name: 杉山 美鈴 + img: sugiyama_misuzu.jpg +- name: 若林 健一 +- name: 新妻 正夫 +- name: 納本 穂高 +- name: 黒柳 裕明 +- name: 佐伯 淳 +- name: 角田 一平 + img: specialthanks.png +- name: 牧 勝己 + img: specialthanks.png diff --git a/_data/sessions.yml b/_data/sessions.yml index dc90291..1e49e4f 100644 --- a/_data/sessions.yml +++ b/_data/sessions.yml @@ -4,22 +4,37 @@ # tag: # speaker: # affiliation: -# sns: +# links: # profile-img: # profile-text: +# archive-link: +# slides: - title: 開会式 - time: 10:00-10:10 text: DojoCon Japan 2021 実行委員長より、開会式の挨拶を行います。 tag: オープニング speaker: 増岡 秀樹 affiliation: DojoCon Japan 2021 実行委員長 - sns: - - https://twitter.com/fku_mnk + links: + - https://ja.gravatar.com/hansendo profile-img: fku_mnk.jpg profile-text: CoderDojo 紫雲チャンピオン。郵便局、パソコン工房を経て帆船堂 電算STUDIOを創設。 コンピュータが大好きな中年のジェントルマン。 Linuxとオープンソース・ソフトウェアを使って働いています。 - profile-id: sp01 - #archive-link: https://youtu.be/OKHXmMnYl0Y + slides: + archive-link: https://www.youtube.com/watch?v=q8XO-qT0GXE&list=PL_XgRvFvKBPZ5j4Cz543ZhORNAteFL5rl + +- title: DojoCon Japan 2021 開催に向けて + text: CoderDojo Foundation より、開催に向けたビデオメッセージです。 + tag: オープニング + speaker: Sonja Bienert + affiliation: CoderDojo Foundation + links: + - https://coderdojo.com/foundation + profile-img: sonja.png + profile-text: "Sonja has a passion for creating international communities with a shared mission of educating and enabling young minds. She is the Senior Community Manager at CoderDojo, leading a team in welcoming and supporting new community members around the world.
+
+Sonja holds a Master’s in Psychology from Georg August University in Göttingen, Germany. After living in Greece and the USA, the German native is excited to call Ireland her home. She enjoys travel, exploration, baking and baseball." + archive-link: https://www.youtube.com/watch?v=e5nvm_AgVCc&list=PL_XgRvFvKBPZ5j4Cz543ZhORNAteFL5rl + - title: CoderDojo Japan 活動報告 time: 10:10-10:30 @@ -27,26 +42,26 @@ tag: 法人連携 speaker: 宮島 衣瑛 affiliation: 一般社団法人 CoderDojo Japan、CoderDojo Kashiwa - sns: + links: - https://twitter.com/kiriem_ profile-img: miyajima_kirie.jpg profile-text: 1997年5月生まれ。2013年5月から地元である千葉県柏市で小中学生向けのプログラミング道場、CoderDojo Kashiwaを主催・運営。プログラミング教育を始めとするICT教育全般について、全国各地で実践研究を行っている。教育分野のR&D(研究開発)を行っている株式会社 Innovation Power のCEO。2017年4月より柏市教育委員会とプログラミング教育に関するプロジェクトをスタート。市内すべての小学校で実施するプログラミング学習のカリキュラム作成やフォローアップを担当。2017年11月より一般社団法人CoderDojo Japan理事。大学院ではコンピュータを基盤とした教育について研究している。 - profile-id: sp02 - #archive-link: + slides: https://speakerdeck.com/kiriem/coderdojo-japan-2021 + archive-link: https://www.youtube.com/watch?v=IYYeG2BgkBw&list=PL_XgRvFvKBPZ5j4Cz543ZhORNAteFL5rl -- title: 2021 CoderDojo大船活動紹介 +- title: 2021 CoderDojo 大船活動紹介 time: 10:40-10:50 text: 2021年の活動は全てオンラインでの開催となったCoderDojo大船。その中で取り組んだ主な活動2つを紹介します。サポーターから見たCoderDojoの活動についてお話いたします。 tag: コミュニティ speaker: 下田 真二 affiliation: CoderDojo 大船 - sns: - - https://www.facebook.com/shimoda.shinji + links: + - https://facebook.com/shimoda.shinji - https://twitter.com/shimodash_home profile-img: shimoda_shinji.jpg profile-text: CoderDojo大船サポーター / 大船在住 / 2児の親 / 会社員 / テレワーク多め / 電子工作 - profile-id: sp03 - #archive-link: https://youtu.be/OKHXmMnYl0Y + slides: https://docs.google.com/presentation/d/1MaYgCgDqNG5PXIYgJmnR_-jQs0cDm_4O6gYH5EJ1qr4/edit?usp=sharing + archive-link: https://www.youtube.com/watch?v=fIA7KgEwhVs&list=PL_XgRvFvKBPZ5j4Cz543ZhORNAteFL5rl - title: 死ぬまでに一度はテクノベーションガールズしよ! time: 11:00-11:20 @@ -54,12 +69,12 @@ tag: 事例紹介 speaker: 佐原 慎也 affiliation: CoderDojo 瑞穂 - sns: + links: - https://twitter.com/yeah_boboi profile-img: sahara_shinya.jpg profile-text: CoderDojo瑞穂の佐原慎也(男)です。瑞穂は今年で愛され3年になります。何と写真はアプリで女性化した僕です。あまりにも妹そっくりなので親戚がざわついていました。写真はテクノベーションガールズを意識しています。技術で女性化、テクノベーションガールズ、ってね! - profile-id: sp04 - #archive-link: https://youtu.be/OKHXmMnYl0Y + slides: https://docs.google.com/presentation/d/12XJLsJwnkQO7OG7uXPSojlR3xPYjPWcTti9TLlvDeJM/edit?usp=sharing + archive-link: https://www.youtube.com/watch?v=Hbe_5MZDBFQ&list=PL_XgRvFvKBPZ5j4Cz543ZhORNAteFL5rl - title: かつてニンジャだった自分が、CoderDojo春日を設立するまでの軌跡と学び time: 11:30-11:50 @@ -67,15 +82,15 @@ tag: 立ち上げ speaker: Teba_eleven affiliation: CoderDojo 春日 - sns: + links: - https://twitter.com/Teba_eleven - - https://www.chickensblog.com/ + - https://www.chickensblog.com - https://qiita.com/Teba_eleven - - https://www.facebook.com/Teba.eleven + - https://facebook.com/Teba.eleven profile-img: teba_eleven.png profile-text: CoderDojo春日のチャンピオンをしている現在高校一年生のTeba_elevenです。普段はプログラミングの勉強をしていて、Web系のプログラマーを目指しています。土日などは福岡のCoderDojoや、オンラインで全国のCoderDojoに参加していたりします。一番得意なプログラミング言語はScratchで、最近はPythonなどもやっています。 - profile-id: sp05 - #archive-link: https://youtu.be/OKHXmMnYl0Y + slides: + archive-link: https://www.youtube.com/watch?v=kdYixOs_7to&list=PL_XgRvFvKBPZ5j4Cz543ZhORNAteFL5rl - title: これまでのDojoConってどんな感じ?激アツ!歴代実行委員長でパネルディスカッション time: 13:00-14:00 @@ -83,11 +98,11 @@ tag: パネルディスカッション speaker: 歴代 DojoCon 実行委員長たち affiliation: 細谷さん、宮島さん、宇津さん、曽我さん - sns: + links: profile-img: panel_dojocon.png profile-text: - profile-id: sp06 - #archive-link: https://youtu.be/agvzP9YBN8Y + slides: + archive-link: https://www.youtube.com/watch?v=EE0KsZSvjF8&list=PL_XgRvFvKBPZ5j4Cz543ZhORNAteFL5rl speakers: - data: role: モデレータ @@ -100,28 +115,28 @@ name: 細谷 崇 affiliation: CoderDojo 西宮・梅田、DojoCon Japan 2016/2017 実行委員長 text: 主にNPO法人のHP制作(WordPress)やkintoneを使った業務システムの構築をしています。サイボウズ株式会社公認kintoneエバンジェリスト/元一社CoderDojo Japan理事/CoderDojo西宮と梅田のチャンピオン/宝塚NPOセンター理事/NPO法人SEIN理事 - sns: + links: - https://twitter.com/tkc49 - data: role: パネリスト name: 宮島 衣瑛 affiliation: CoderDojo Kashiwa、DojoCon Japan 2018/2020 実行委員長 text: 1997年5月生まれ。2013年5月から地元である千葉県柏市で小中学生向けのプログラミング道場、CoderDojo Kashiwaを主催・運営。プログラミング教育を始めとするICT教育全般について、全国各地で実践研究を行っている。教育分野のR&D(研究開発)を行っている株式会社 Innovation Power のCEO。2017年4月より柏市教育委員会とプログラミング教育に関するプロジェクトをスタート。市内すべての小学校で実施するプログラミング学習のカリキュラム作成やフォローアップを担当。2017年11月より一般社団法人CoderDojo Japan理事。大学院ではコンピュータを基盤とした教育について研究している。 - sns: + links: - https://twitter.com/kiriem_ - data: role: パネリスト name: 宇津 義一 affiliation: CoderDojo 名古屋、DojoCon Japan 2019 実行委員長 text: CoderDojo名古屋チャンピオン。最近ロボカップアジアパシフィック2021あいちに東海地区のCoderDojoでワークショップ出展、延べ450名ほどのニンジャに参加してもらいました。準備大変だったけどみんなで盛り上がって楽しかったのが最近のオモイデ。 - sns: + links: - https://facebook.com/yoshikazu.utsu.5 - data: role: パネリスト name: 曽我 悠真 affiliation: CoderDojo 岡南、DojoCon Japan 2020 実行委員長 text: 2003年生まれ。高校3年生。小学5年生からプログラミングに触れ始める。CoderDojo Konan を 2017年に立ち上げ。IPA主催セキュリティ・キャンプ 全国大会 2018 を中学2年の夏に修了。 NICT主催 SecHack365 2019 に高校1年生のときに参加・修了。 DojoCon Japan 2020 共同実行委員長。 - sns: + links: - https://twitter.com/ymsg19 - https://ymsg.space @@ -131,12 +146,12 @@ tag: 活動事例 speaker: 武田 和樹 affiliation: CoderDojo 立川 - sns: + links: - https://twitter.com/takenok58914745 profile-img: takeda_kazuki.jpg profile-text: 高専2年生です。Scratch, Unity, Blenderとかやってます。過去にFLL(HYDRO DYNAMICS、INTO ORBIT)に参加しました。 - profile-id: sp07 - #archive-link: https://youtu.be/OKHXmMnYl0Y + slides: + archive-link: https://www.youtube.com/watch?v=Rx34NQGYPfM&list=PL_XgRvFvKBPZ5j4Cz543ZhORNAteFL5rl - title: 高校生としてのCoderDojoとの関わり time: 14:40-14:50 @@ -144,14 +159,14 @@ tag: 立ち上げ speaker: 尾川 史典 affiliation: CoderDojo Hino - sns: + links: - https://twitter.com/mizphses - https://facebook.com/mizphses - https://mizphses.com profile-img: ogawa_fuminori.jpg profile-text: 中央大学経済学部1年.2018年からCoderDojoに携わる.2021年9月にコロナワクチン予診票作成アプリを作ったら記事になった. - profile-id: sp08 - #archive-link: https://youtu.be/OKHXmMnYl0Y + slides: https://www.slideshare.net/FuminoriOgawa/coderdojo-250863847 + archive-link: https://www.youtube.com/watch?v=XXaHostWgBk&list=PL_XgRvFvKBPZ5j4Cz543ZhORNAteFL5rl - title: 跳ねるドローン、踊る3Dプリンタ、四国徳島神山町の道場 time: 15:00-15:20 @@ -161,14 +176,14 @@ tag: 活動事例 speaker: 本橋 大輔 affiliation: CoderDojo 神山 - sns: + links: - https://twitter.com/CdKamiyama - https://facebook.com/CDKamiyama - https://note.com/cdkamiyama profile-img: motohashi_daisuke.jpg profile-text: 埼玉県出身の44歳、2013年に徳島県神山町へ転居。子供が生まれたことをきっかけに、2018年にコーダー道場神山を立ち上げました。普段はプログラマー仕事の傍らで神山メイカースペースというデジファブ施設の運営をしています。 - profile-id: sp09 - #archive-link: https://youtu.be/OKHXmMnYl0Y + slides: https://speakerdeck.com/motohasystem/tiao-nerudoron-yong-ru3dpurinta-si-guo-de-dao-shen-shan-ting-falsedao-chang/ + archive-link: https://www.youtube.com/watch?v=HshFqjwnwVE&list=PL_XgRvFvKBPZ5j4Cz543ZhORNAteFL5rl - title: 奈良のCoderDojoを見渡す time: 15:30-15:50 @@ -176,13 +191,13 @@ tag: コミュニティ speaker: 若林 健一(CoderDojo 奈良)、石川 善行(CoderDojo 生駒) affiliation: - sns: + links: - https://twitter.com/CoderDojoNara - https://facebook.com/yoshiyuki.ishikawa.125 profile-img: coderdojo_nara_ikoma.jpg profile-text: "奈良県内で活動しているDojoです。それぞれ奈良市と生駒市で活動しています。 / 石川 善行さん:CoderDojo奈良・生駒に2016年からメンターとして参加、2018年より生駒のチャンピオン。元ゲーム系プログラマー" - profile-id: sp10 - #archive-link: https://youtu.be/OKHXmMnYl0Y + slides: https://speakerdeck.com/kwaka1208/nai-liang-falsecoderdojowojian-du-su-at-dojocon-japan-2021 + archive-link: https://www.youtube.com/watch?v=MWTC7BnS-Ng&list=PL_XgRvFvKBPZ5j4Cz543ZhORNAteFL5rl - title: コロナ渦のノウハウパネルディスカッション on oVice time: 16:00-16:30 @@ -195,13 +210,13 @@ oVice 会場と、セッション YouTube 中継のハイブリット配信で tag: コミュニティ speaker: Katz Ueno affiliation: CoderDojo 尾張 - sns: + links: - https://twitter.com/katzueno - https://katzueno.com profile-img: katz_ueno.jpg profile-text: "2017年4月より、愛知県岩倉市で CoderDojo 尾張を立ち上げる。コンクリートファイブジャパン株式会社の Chief Communications Officer として、オープンソース CMS 「Concrete CMS」の日本での普及活動を行っている。2児の父で、長女・次女と一緒に Scratch、micro:bit、Viscuit を楽しんでいる毎日。コロナ禍で新しいルールの元、オンライン・オフライン・ハイブリット開催を行っていて、ガイドラインを独自に作成したりしている。" - profile-id: sp11 - #archive-link: https://youtu.be/OKHXmMnYl0Y + slides: + archive-link: https://www.youtube.com/watch?v=cAXhCSIki84&list=PL_XgRvFvKBPZ5j4Cz543ZhORNAteFL5rl - title: 私たちのこれまでと、これからを見渡してみた time: 16:40-17:00 @@ -209,13 +224,13 @@ oVice 会場と、セッション YouTube 中継のハイブリット配信で tag: コミュニティ speaker: 三橋 正美 affiliation: CoderDojo 札幌 - sns: + links: - https://coderdojo-sapporo.jp/ - https://facebook.com/coderdojo.sapporo/ profile-img: mitsuhashi_masami.png profile-text: 1963年生まれ。普段は自社基幹システムのお守りをしている。こどもの頃から暇さえあれば何かを作って(今で言うところのティンカリング)いた。プログラミングは学生時代に卒論とゲームのためにBASICから始めた。社会人になってからは、楽しみとしてのプログラミングからは距離を置いてたが、Raspberry Piと出会ったことが切っ掛けでCoderDojoを知るところとなり、2016年のDojoCon Japanに参加、盛り上がって一気にCoderDojo札幌を立ち上げた。 - profile-id: sp12 - #archive-link: https://youtu.be/OKHXmMnYl0Y + slides: + archive-link: https://www.youtube.com/watch?v=sklnmYOBXzg&list=PL_XgRvFvKBPZ5j4Cz543ZhORNAteFL5rl - title: プログラミング研究と CoderDojo time: 17:10-17:30 @@ -223,13 +238,13 @@ oVice 会場と、セッション YouTube 中継のハイブリット配信で tag: 活動事例 speaker: 鈴木 遼 affiliation: 早稲田大学 / Siv3D - sns: + links: - https://twitter.com/Reputeless - https://ryo-suzuki-contact.github.io/ profile-img: ryo_suzuki.jpg profile-text: 早稲田大学表現工学専攻博士後期課程に在籍。プログラミングを楽しく簡単にするツール Siv3D, Siv3D for Kids を開発するかたわら、プログラミング教育活動に取り組む。著書に『冒険で学ぶ はじめてのプログラミング』(2018, 技術評論社)。2013 年度 IPA 未踏事業スーパークリエータ認定、U-17 未踏ジュニアのメンター、プログラミング教室 Tasta 代表。 - profile-id: sp13 - #archive-link: https://youtu.be/OKHXmMnYl0Y + slides: https://speakerdeck.com/cpp/dojocon2021-siv3d + archive-link: https://www.youtube.com/watch?v=fz3zMcLYbmw&list=PL_XgRvFvKBPZ5j4Cz543ZhORNAteFL5rl - title: 「世界初」のこどもの育て方 time: 17:40-18:00 @@ -238,8 +253,8 @@ oVice 会場と、セッション YouTube 中継のハイブリット配信で そんな中、私たちメンターがどうやってNinjaたちの創造性を高めていったのか、お伝えしてみたいと思います。" tag: 活動事例 speaker: 濱田 康 - affiliation: CoderDojo 松本・諏訪湖・安曇野、一般社団法人エンターキー - sns: + affiliation: CoderDojo 松本・諏訪湖、一般社団法人エンターキー + links: - https://facebook.com/yasushi.hamada.56 profile-img: hamada_yasushi.jpg profile-text: "神奈川県鎌倉市出身。1997年長野県松本市に移住。
@@ -247,8 +262,8 @@ oVice 会場と、セッション YouTube 中継のハイブリット配信で CoderDojo松本・諏訪湖・安曇野(共同)チャンピオン。一般社団法人エンターキー代表理事として、教育委員会へのICTアドバイザリー従事。

元ディズニーキャスト。元システムエンジニア。自家用パイロット。三児の父親。" - profile-id: sp14 - #archive-link: https://youtu.be/OKHXmMnYl0Y + slides: https://docs.google.com/presentation/d/1YXpQJDt5P7F5EUl65IZR7LPZCcO_eV0HccmiKKukcnM/edit?usp=sharing + archive-link: https://www.youtube.com/watch?v=ucI9xoVX8hE&list=PL_XgRvFvKBPZ5j4Cz543ZhORNAteFL5rl - title: 懇親会 time: 18:30-19:30 @@ -256,10 +271,8 @@ CoderDojo松本・諏訪湖・安曇野(共同)チャンピオン。一般 tag: oVice 会場で開催 speaker: affiliation: - sns: - - + links: profile-img: TBU.jpg profile-text: - profile-id: sp15 #archive-link: https://youtu.be/OKHXmMnYl0Y diff --git a/_data/speaker.yml b/_data/speaker.yml deleted file mode 100644 index dde0b16..0000000 --- a/_data/speaker.yml +++ /dev/null @@ -1,7 +0,0 @@ -#- name: 表示する名前。スペースも使用可 (例:三橋 優希) -# img: アイコン画像。/img/speaker 内に入れる。「表示する名前の英数字表記.jpg」というファイル名が好ましい。 (例: mihashiyuki.jpg) -# site: WebサイトのURL。"https://"から含めること。 (例: https://yuki384.github.io) -# twitter: Twitterのユーザー名。@は要らない。(例: YukiMihashi) -# facebook: FacebookのURL。(例: https://www.facebook.com/profile.php?id=100014694420954) -# position: 肩書。(例: CoderDojo中野メンター) -# description: 自己紹介文。140文字程度。 diff --git a/_includes/footer.html b/_includes/footer.html index ba28eba..066e6df 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -12,5 +12,5 @@
  • Twitter
  • - + diff --git a/_layouts/default.html b/_layouts/default.html index d61498e..f6e3495 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -3,7 +3,8 @@ {% include head.html %} {% include navbar.html %} - {{content}} + {{ content }} +
    Up
    {% include footer.html %} diff --git a/_posts/2021-12-04-timeforthevolunteers.md b/_posts/2021-12-04-timeforthevolunteers.md index 5d76826..d6bd8ab 100644 --- a/_posts/2021-12-04-timeforthevolunteers.md +++ b/_posts/2021-12-04-timeforthevolunteers.md @@ -80,11 +80,11 @@ DojoCon Japanでは、毎年異なるテーマのもとに開催されるのが ということで、2016年から2020年までの公式Webサイトをここに一覧してみました。 ### 2016年8月27日 -**[DojoCon Japan 2016 - The more dojos, the more cool coders. -](http://dojocon2016.coderdojo.jp/)** +**[DojoCon Japan 2016 - The more dojos, the more cool coders. -](https://dojocon2016.coderdojo.jp/)**
    内田洋行 大阪 ユビキタス協創広場 CANVASにて開催 ![Webサイト 2016](/img/post/timeforthevolunteers_dojocon2016.webp) -[http://dojocon2016.coderdojo.jp/](http://dojocon2016.coderdojo.jp/) +[https://dojocon2016.coderdojo.jp/](https://dojocon2016.coderdojo.jp/) {: .text-right} diff --git a/_sass/_global.scss b/_sass/_global.scss index 49043f1..8ef748c 100644 --- a/_sass/_global.scss +++ b/_sass/_global.scss @@ -87,7 +87,7 @@ section { } } -@media screen and (max-width: 800px) { +@media screen and (max-width: 1000px) { .button { padding: 8px 0; width: 80%; @@ -362,4 +362,4 @@ table thead th { .no-padding { padding: 0; -} \ No newline at end of file +} diff --git a/_sass/_top.scss b/_sass/_top.scss index 265beca..5ee68fd 100644 --- a/_sass/_top.scss +++ b/_sass/_top.scss @@ -254,6 +254,10 @@ } //実行委員一覧 + .flex { + display: flex; + flex-wrap: wrap; + } .member { float: left; padding: 1.5vw; @@ -272,8 +276,10 @@ } .member-image { - height: calc(16vw - 3vw); - max-height: 170px; + padding-bottom: 0px; + //height: calc(16vw - 3vw); + //height: 10px; + max-height: 130px; img { border-radius: 50%; box-shadow: 0 0 3px #d1d3e4; @@ -289,10 +295,14 @@ @media screen and (max-width: 800px) { .member { - width: calc(33% - 3vw); + //width: calc(33% - 3vw); + width: 120px; + p { margin-top: 3vw; } } .member-image { - height: calc(26vw - 3vw); + //height: calc(26vw - 3vw); + height: 100px; + max-height: 100px; } } diff --git a/apple-touch-icon.png b/apple-touch-icon.png deleted file mode 100755 index 3bbdb8c..0000000 Binary files a/apple-touch-icon.png and /dev/null differ diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..c5efeb3 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,12 @@ +version: '1.0' + +services: + jekyll: + # https://hub.docker.com/r/coderdojojapan/dojocon-japan-2021 + image: coderdojojapan/dojocon-japan-2021 + volumes: + - type: bind + source: ./ + target: /src + ports: + - '4000:4000' diff --git a/dojos/jiman-210owari.md b/dojos/jiman-210owari.md index 9b23bc2..7cc5f05 100644 --- a/dojos/jiman-210owari.md +++ b/dojos/jiman-210owari.md @@ -5,7 +5,7 @@ dojo_name: "CoderDojo尾張(愛知)" thumbnail: dojo_desciption: > 月に1回、10〜20名、岩倉市生涯学習センター
    - Webサイト + Webサイト dojo_icon: owari.svg dojo_iconfile: permalink: /dojo-jiman/owari/ diff --git a/img/members/ando_genki.jpg b/img/members/ando_genki.jpg new file mode 100755 index 0000000..c0a2d4c Binary files /dev/null and b/img/members/ando_genki.jpg differ diff --git a/img/members/dummy.png b/img/members/dummy.png new file mode 100755 index 0000000..d5156bf Binary files /dev/null and b/img/members/dummy.png differ diff --git a/img/members/dummy.pxm b/img/members/dummy.pxm new file mode 100644 index 0000000..fb6e699 Binary files /dev/null and b/img/members/dummy.pxm differ diff --git a/img/members/dummy_v0.png b/img/members/dummy_v0.png new file mode 100755 index 0000000..1306fae Binary files /dev/null and b/img/members/dummy_v0.png differ diff --git a/img/members/goto_hiroya.jpg b/img/members/goto_hiroya.jpg new file mode 100755 index 0000000..037d2a4 Binary files /dev/null and b/img/members/goto_hiroya.jpg differ diff --git a/img/members/hamada_yasushi.jpg b/img/members/hamada_yasushi.jpg new file mode 100755 index 0000000..f60bacf Binary files /dev/null and b/img/members/hamada_yasushi.jpg differ diff --git a/img/members/ikawa_kenichi.jpg b/img/members/ikawa_kenichi.jpg new file mode 100755 index 0000000..c3a5576 Binary files /dev/null and b/img/members/ikawa_kenichi.jpg differ diff --git a/img/members/inoue.jpg b/img/members/inoue.jpg new file mode 100755 index 0000000..1588a3b Binary files /dev/null and b/img/members/inoue.jpg differ diff --git a/img/members/masuoka_hideki.png b/img/members/masuoka_hideki.png new file mode 100755 index 0000000..4fa5d4d Binary files /dev/null and b/img/members/masuoka_hideki.png differ diff --git a/img/members/mayusan.jpg b/img/members/mayusan.jpg new file mode 100755 index 0000000..dac0b24 Binary files /dev/null and b/img/members/mayusan.jpg differ diff --git a/img/members/miyajima_kirie.jpg b/img/members/miyajima_kirie.jpg new file mode 100755 index 0000000..edc8622 Binary files /dev/null and b/img/members/miyajima_kirie.jpg differ diff --git a/img/members/sawa_keisuke.png b/img/members/sawa_keisuke.png new file mode 100755 index 0000000..a1ac65f Binary files /dev/null and b/img/members/sawa_keisuke.png differ diff --git a/img/members/soga_yuma.jpg b/img/members/soga_yuma.jpg new file mode 100755 index 0000000..7ebf3db Binary files /dev/null and b/img/members/soga_yuma.jpg differ diff --git a/img/members/specialthanks.png b/img/members/specialthanks.png new file mode 100644 index 0000000..059389a Binary files /dev/null and b/img/members/specialthanks.png differ diff --git a/img/members/sugiyama_misuzu.jpg b/img/members/sugiyama_misuzu.jpg new file mode 100644 index 0000000..0b10235 Binary files /dev/null and b/img/members/sugiyama_misuzu.jpg differ diff --git a/img/members/ueno_katz.jpg b/img/members/ueno_katz.jpg new file mode 100755 index 0000000..e10ca2a Binary files /dev/null and b/img/members/ueno_katz.jpg differ diff --git a/img/members/utsu_yoshikazu.jpg b/img/members/utsu_yoshikazu.jpg new file mode 100644 index 0000000..517b8f6 Binary files /dev/null and b/img/members/utsu_yoshikazu.jpg differ diff --git a/img/members/wakabayashi_junichi.jpg b/img/members/wakabayashi_junichi.jpg new file mode 100755 index 0000000..cfec8d5 Binary files /dev/null and b/img/members/wakabayashi_junichi.jpg differ diff --git a/img/members/yasulab.jpg b/img/members/yasulab.jpg new file mode 100755 index 0000000..322abc7 Binary files /dev/null and b/img/members/yasulab.jpg differ diff --git a/img/members/yoshikawa_keita.webp b/img/members/yoshikawa_keita.webp new file mode 100644 index 0000000..23242ce Binary files /dev/null and b/img/members/yoshikawa_keita.webp differ diff --git a/img/session/sonja.png b/img/session/sonja.png new file mode 100644 index 0000000..fe8bc86 Binary files /dev/null and b/img/session/sonja.png differ diff --git a/img/staff/dummy.png b/img/staff/dummy.png deleted file mode 100644 index 223bd8c..0000000 Binary files a/img/staff/dummy.png and /dev/null differ diff --git a/index.md b/index.md index c0df355..315ebb0 100644 --- a/index.md +++ b/index.md @@ -4,10 +4,10 @@ layout: default
    -

    - DojoCon Japan {{ site.year }} - DojoCon Japan {{ site.year }} -

    +

    + DojoCon Japan {{ site.year }} + DojoCon Japan {{ site.year }} +

    +

    + 多くのご参加ありがとうございました!
    + 当日の様子は下記からご確認ください。 +


    + +
    +
    -
    -
    -

    ライブ配信を見る

    + - + 午後の部 (YouTube) +

    当日のアーカイブはこちら!

    + Youtubeプレイリストを開く
    + -->

    @@ -183,8 +194,6 @@ layout: default - -

    CONTACT

    @@ -194,15 +203,34 @@ layout: default
    -
    +

    Organized by

    -

    DojoCon Japan {{ site.year }} 実行委員会

    +

    DojoCon Japan 実行委員会

    一般社団法人 CoderDojo Japan

    - +
    + {% for member in site.data.members %} + + {% endfor %} +
    + +

    Supported by

    CoderDojo Foundation

    - -->
    diff --git a/privacy.md b/privacy.md index f3c9a4f..0807788 100644 --- a/privacy.md +++ b/privacy.md @@ -4,11 +4,11 @@ title: プライバシー・ポリシー permalink: /privacy --- -DojoCon Japan {{ site.year }} 実行委員会 (以下、当実行委員会) では、利用者の個人情報をお預かりしています。当実行委員会は、利用者が安心して本サイトおよび当実行委員会にお問い合わせできるよう、個人情報に関する法令を尊守し、適切に個人情報の取り扱いを致します。 +DojoCon Japan 実行委員会 (以下、当実行委員会) では、利用者の個人情報をお預かりしています。当実行委員会は、利用者が安心して本サイトおよび当実行委員会にお問い合わせできるよう、個人情報に関する法令を尊守し、適切に個人情報の取り扱いを致します。 ## 個人情報の収集 当実行委員会ではメールまたはフォームで情報を送付していただく際に、利用者の個人情報を収集することがあります。収集するにあたっては、利用目的を明記の上、適法かつ公正な手段で収集します。当実行委員会が収集することのある個人情報は以下の通りです。 -v + - お名前 - メールアドレス - お問い合わせの内容 @@ -60,6 +60,6 @@ Google Analyticsの利用により収集されたデータは、Google社のプ なお、Google Analyticsのサービス利用による損害については、当実行委員会は責任を負わないものとします。 -DojoCon Japan {{ site.year }} 実行委員会
    +DojoCon Japan 実行委員会
    連絡先: {{ site.email }}
    最終更新日: {{ site.date_published }} diff --git a/sessions.md b/sessions.md index 6274c7d..56fcb56 100644 --- a/sessions.md +++ b/sessions.md @@ -16,15 +16,19 @@ thumbnail: timetable.png
    当日のタイムテーブル
    タイムテーブル -