Skip to content

Commit 406110b

Browse files
committed
Changed unnecessary details
1 parent b510062 commit 406110b

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
# Ignore the default SQLite database.
1111
/db/*.sqlite3
12+
/config/database.yml
1213

1314
# Ignore all logfiles and tempfiles.
1415
/log/*.log

app/views/layouts/application.html.erb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title><%= controller_name.capitalize %> | Myers Movie Database</title>
4+
<title><%= controller_name.capitalize %> | Home Movie Database</title>
55
<%= stylesheet_link_tag "application", :media => "all" %>
66
<%= javascript_include_tag "application" %>
77
<%= csrf_meta_tags %>
88
</head>
99
<body data-controller="<%= controller_name %>" data-action="<%= action_name %>">
1010

1111
<hgroup>
12-
<a href="<%= root_path %>"><h1>Myers Movie Database</h1></a>
12+
<a href="<%= root_path %>"><h1>Home Movie Database</h1></a>
1313
<nav role="navigation">
1414
<%= link_to "Movies", movies_path %>
1515
<%= link_to "Actors", actors_path %>

app/views/layouts/home.html.erb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Home | Myers Movie Database</title>
4+
<title>Home | Home Movie Database</title>
55
<%= stylesheet_link_tag "application", :media => "all" %>
66
<%= javascript_include_tag "application" %>
77
<%= csrf_meta_tags %>
88
</head>
99
<body data-controller="<%= controller_name %>" data-action="<%= action_name %>">
1010

1111
<hgroup>
12-
<h1>Myers Movie Database</h1>
12+
<h1>Home Movie Database</h1>
1313
<nav role="navigation">
1414
<%= link_to "Movies", movies_path %>
1515
<%= link_to "Actors", actors_path %>

0 commit comments

Comments
 (0)