3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Sinatraでページを作ってリンクしてみる

Posted at

はじめに

  1. http://qiita.com/ms2sato/items/7c07b2079b48c49fad2a
  2. http://qiita.com/ms2sato/items/eed1e3c929ac8f6195a9

の続き

about.erbの作成

<html>
<head>
  <meta charset="UTF-8">
</head>
<body>
  <h1>このサービスについて</h1>
  <p>これはSinatraのテストサービスです</p>
  <div>
    <a href="/">トップへ戻る</a>
  </div>
</body>
</html>

app.rbの修正

require 'sinatra'
require 'sinatra/reloader'

get '/' do
  erb :index  
end

get '/about' do
  erb :about
end

この時点で http://localhost:4567/aboutにアクセスすれば「このサービスについて」のページが見れちゃう!

トップからaboutページへリンク

<html>
<head>
  <meta charset="UTF-8">
</head>
<body>
こんにちは。HTMLで書きました。
<p>
<a href="about">このサービスについて</a>
</p>
</body>
</html>

これで、トップページとaboutページは行ったり来たりできますね!

おしまいに

簡単なページの追加についてできたらOKです!

3
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
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?