Skip to content

hosei-k-softtennis/HoseiUniversitySoftTennisClubHP

Repository files navigation

法政大学工体連ソフトテニス部ホームページ

Build Status

法政大学工体連ソフトテニス部ホームページのレポジトリです。

JekyllをベースとしたJasperテーマを用いたホームページになっています。 部員一覧や大会結果などはMarkdownで記述されています。

レポジトリのクローン

$ git clone https://github.com/hosei-k-softtennis/HoseiUniversitySoftTennisClubHP.git

環境構築

rbenv+ruby-buildを使ったRubyの環境構築

$ git clone https://github.com/rbenv/rbenv.git ~/.rbenv
$ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
$ echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
$ git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
$ echo 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bash_profile
  • ホームページ用のRuby環境を構築する
    • Ruby2.4.2をインストール
    • Ruby2.4.2をベースにhosei-2.4.2環境を用意
    • bundleをインストール
    • bundleを使ってホームページのビルドに必要なパッケージをインストール
$ rbenv install 2.4.2
$ mkdir ~/.rbenv/versions/hosei-2.4.2
$ ruby-build 2.4.2 ~/.rbenv/versions/hosei-2.4.2
$ cd HoseiUniversitySoftTennisClubHP
$ rbenv local hosei-2.4.2
$ gem install bundle
$ bundle install

ホームページのビルド

$ cd HoseiUniversitySoftTennisClubHP
$ jekyll server

ホームページの更新

ディレクトリ構成

/HoseiUniversitySoftTennisClubHP
├── README.md
├── _data
├── _includes
├── _layouts
├── _plugins
├── _posts
│   ├── 2011-11-07-post-01.md
│   ├── 2013-04-01-post-02.md
│   ├── 2013-12-26-post-03.md
│   ├── 2014-03-28-post-04.md
│   └── 2015-04-28-post-05.md
├── _site
│   ├── README.md
│   ├── about
│   ├── access
│   ├── assets
│   │   ├── css
│   │   ├── fonts
│   │   ├── images
│   │   └── js
│   ├── author
│   │   └── admin
│   ├── contact
│   ├── member
│   ├── result
│   └── tag
│       └── post
├── about
│   └── index.md
├── access
│   └── index.md
├── assets
│   ├── css
│   ├── fonts
│   ├── images
│   └── js
├── contact
│   └── index.md
├── member
│   └── index.md
└── result
    └── index.md

記事の追加

  • _post/の中に.md(markdown)形式で追加してください。
  • ファイル名はyear-month-day-post-(number).mdに統一してください。
  • ヘッダーに以下のような情報が必要です。コピペして適宜必要事項を変更してください。
    • title
    • date
    ---
    layout: post
    cover: 'assets/images/bg_map.jpg'
    navigation: True
    title: 【当部活OBさまへ】50周年記念 思い出話の寄稿様式について
    date: 2015-04-28
    tags: post
    subclass: 'post'
    logo: 'assets/images/hosei_logo_white.png'
    author: admin
    categories: admin
    ---
    

部員一覧の更新

  • member/index.mdを変更してください。

大会結果の更新

  • result/index.mdを変更してください。