1
1

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 3 years have passed since last update.

Railsで手軽に静的ページを作る方法

Posted at

手軽に静的ページを作りたい

個人開発をしていると必要になる「利用規約」「プライバシーポリシー」などの静的ページ
そのためにcontrollerを作成してroutesをいじるっていうのは結構手間ですよね?
その問題を解決できる「high_voltage」というgemが存在します!

##gemの導入

gemfile
gem 'high_voltage'

gemfileに追加する

ターミナル
$ bundle install

コマンドを打ち込むことで「high_voltage」を使える準備が整いました!

使用方法

1.app/viewsのディレクトリの中にpagesというディレクトリを作成
2.app/views/pagesのディレクトリの中にpolicy.html.erbを作成
「policy」には好きな文字列を!

作成したpolicy.html.erbに何か書いておきましょう
スクリーンショット 2021-05-01 17.24.15.png

以下のURLにアクセスすることでpolicyページが表示されます!
http://localhost:3000/pages/policy

RoutingErrorになる場合はサーバーの再起動を行ってみてください。

ページのリンクを作成する

<%= link_to 'policy', page_path('policy') %>

リンクはこのような書き方になります

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?