LoginSignup
5
5

More than 5 years have passed since last update.

Octopressでサイドバーに簡易プロフィールを表示させよう!

Posted at

Octopressでは、サイドバーに表示される情報をカスタマイズする事が可能です。
ここでは、簡易プロフィールを表示させてみましょう。

簡易プロフィールを作成

実は、デフォルトで簡易プロフィール用のHTMLは作成されています。
このファイルを好きなように変更すればオッケーです。

source/_includes/custom/asides/about.html
<section>
  <h1>About Me</h1>
  <p>A little something about me.</p>
</section>

設定ファイルを編集

新しく追加したいサイドバーのHTML情報は、_config.ymlに追記します。
ここでは、サイドバーの先頭に簡易プロフィールを表示させたいので、先頭に追記しています。

_config.yml
# list each of the sidebar modules you want to include, in the order you want them to appear.
# To add custom asides, create files in /source/_includes/custom/asides/ and add them to the list like 'custom/asides/custom_aside_name.html'
default_asides: [custom/asides/about.html, asides/recent_posts.html, asides/github.html, asides/twitter.html, asides/delicious.html, asides/pinboard.html, asides/googleplus.html]

これだけで、サイドバーに簡易プロフィールを表示させる事が出来ます。

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5