Last active
March 29, 2016 15:09
-
-
Save ygkn/977b82775533bf482a7a to your computer and use it in GitHub Desktop.
Sinatraでサブタイトルを付ける ref: http://qiita.com/ygkn/items/7421ec04eff441f52201
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
get '/' do | |
@subtitle = "サブタイトル" | |
erb :index | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title><%= @subtitle && @subtitle + " - " %>サイト名<title> | |
つづく… |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment