Browse Source

Add viewport meta tag for mobile support

master
Macoy Madson 4 years ago
parent
commit
da0431538f
  1. 3
      templates/BlogPost.html
  2. 3
      templates/Home.html

3
templates/BlogPost.html

@ -1,6 +1,9 @@
<html>
<head>
<title>{{ title }}</title>
<!-- For mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="/webResources/styles.css">
</head>
<body>

3
templates/Home.html

@ -1,6 +1,9 @@
<html>
<head>
<title>Home</title>
<!-- For mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="/webResources/styles.css">
</head>
<body>

Loading…
Cancel
Save