Skip to content

Commit

Permalink
#76 - Fix html title output
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeckerson committed Nov 30, 2019
1 parent 3fbf99b commit 9413fe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/index.volt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<title>Phalcon Invo</title>
<meta charset="utf-8">
{{ get_title() }}
<title>{{ get_title() }}</title>
{{ stylesheet_link('css/bootstrap.min.css') }}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your invoices">
Expand Down

3 comments on commit 9413fe4

@mahen3d
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why do we need two title tags? line 4 and line 6?

@Jeckerson
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch!

@Jeckerson
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just created an issue #89

Please sign in to comment.