Skip to content

Commit d61027f

Browse files
authored
Add viewport meta tag to HTML head (#234)
Much better page dimensions and scaling on mobile devices; this tag is standard practice for HTML these days. Also see heroku/php-getting-started#74
1 parent 6b0aa9a commit d61027f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hello/templates/base.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Python Getting Started on Heroku</title>
4+
<title>Python Getting Started on Heroku</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
56
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" />
67
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
78
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>

0 commit comments

Comments
 (0)