diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-12-10 15:39:22 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-12-10 15:39:22 -0800 |
commit | 9366388c05203c2b39df62727757df01be2545ee (patch) | |
tree | 26a6ff99d6efc884a2d61df122f556ed31f4d961 /trypandoc | |
parent | 532c6a81e12ad62122450523b3fcf9c46ecf1822 (diff) | |
download | pandoc-9366388c05203c2b39df62727757df01be2545ee.tar.gz |
Fix CSS and viewport on try pandoc index.html.
Diffstat (limited to 'trypandoc')
-rw-r--r-- | trypandoc/index.html | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/trypandoc/index.html b/trypandoc/index.html index e9fbf4597..5a8aed61a 100644 --- a/trypandoc/index.html +++ b/trypandoc/index.html @@ -3,9 +3,15 @@ <head> <meta charset="utf-8"> <title>Try pandoc!</title> - <script src="//code.jquery.com/jquery-1.11.0.min.js"></script> - <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script> - <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <!--[if lt IE 9]> + <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> + <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> + <![endif]--> + <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> + <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet"> + <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> <script type="text/javascript"> (function($) { // http://stackoverflow.com/questions/901115/how-can-i-get-query-string-values $.QueryString = (function(a) { @@ -63,7 +69,7 @@ $(document).ready(function() { </style> </head> <body> -<div class="container"> +<div class="container-fluid"> <div class="row"> <div class="col-md-6"> <h1>Try pandoc!</h1> |