Add proper title to pages
parent
9a1368b2ad
commit
484e63f7ee
|
@ -1,4 +1,5 @@
|
||||||
- content_for(:title) { 'Index' }
|
- content_for :title do
|
||||||
|
| Movies
|
||||||
|
|
||||||
form method="get" action="/" id="filter"
|
form method="get" action="/" id="filter"
|
||||||
div id="search-main"
|
div id="search-main"
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
doctype html
|
doctype html
|
||||||
html
|
html
|
||||||
head
|
head
|
||||||
title = yield_content :title
|
title
|
||||||
|
= yield_content :title
|
||||||
|
| - Librarix
|
||||||
meta charset="utf-8"
|
meta charset="utf-8"
|
||||||
meta name="viewport" content="initial-scale=1.0, user-scalable=yes"
|
meta name="viewport" content="initial-scale=1.0, user-scalable=yes"
|
||||||
link rel="stylesheet" media="all" href="/application.css"
|
link rel="stylesheet" media="all" href="/application.css"
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
- content_for(:title) { 'Search' }
|
- content_for :title do
|
||||||
|
| Search
|
||||||
|
|
||||||
form method="get" action="/search" id="search"
|
form method="get" action="/search" id="search"
|
||||||
div id="search-main"
|
div id="search-main"
|
||||||
|
|
Loading…
Reference in New Issue