aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2018-09-20 12:10:31 +0300
committerXhmikosR <[email protected]>2018-10-18 11:27:47 +0300
commitf77c7a3c92e5fc01970eb09e507a17dddd50aa0f (patch)
tree4b69891f03aa9531c8ae22dd51083939d507bdbc /docs
parent26897b919b26e1b071b5c73b8e1740d36c5be7c6 (diff)
downloadbootstrap-f77c7a3c92e5fc01970eb09e507a17dddd50aa0f.tar.xz
bootstrap-f77c7a3c92e5fc01970eb09e507a17dddd50aa0f.zip
Switch to lowercase `doctype`.
Diffstat (limited to 'docs')
-rw-r--r--docs/_includes/css/overview.html2
-rw-r--r--docs/_includes/getting-started/template.html2
-rw-r--r--docs/_layouts/default.html2
-rw-r--r--docs/_layouts/home.html2
-rw-r--r--docs/examples/blog/index.html2
-rw-r--r--docs/examples/carousel/index.html2
-rw-r--r--docs/examples/cover/index.html2
-rw-r--r--docs/examples/dashboard/index.html2
-rw-r--r--docs/examples/grid/index.html2
-rw-r--r--docs/examples/jumbotron-narrow/index.html2
-rw-r--r--docs/examples/jumbotron/index.html2
-rw-r--r--docs/examples/justified-nav/index.html2
-rw-r--r--docs/examples/navbar-fixed-top/index.html2
-rw-r--r--docs/examples/navbar-static-top/index.html2
-rw-r--r--docs/examples/navbar/index.html2
-rw-r--r--docs/examples/non-responsive/index.html2
-rw-r--r--docs/examples/offcanvas/index.html2
-rw-r--r--docs/examples/signin/index.html2
-rw-r--r--docs/examples/starter-template/index.html2
-rw-r--r--docs/examples/sticky-footer-navbar/index.html2
-rw-r--r--docs/examples/sticky-footer/index.html2
-rw-r--r--docs/examples/theme/index.html2
-rw-r--r--docs/examples/tooltip-viewport/index.html2
23 files changed, 23 insertions, 23 deletions
diff --git a/docs/_includes/css/overview.html b/docs/_includes/css/overview.html
index a7d431ea1..49dd4796d 100644
--- a/docs/_includes/css/overview.html
+++ b/docs/_includes/css/overview.html
@@ -6,7 +6,7 @@
<h2 id="overview-doctype">HTML5 doctype</h2>
<p>Bootstrap makes use of certain HTML elements and CSS properties that require the use of the HTML5 doctype. Include it at the beginning of all your projects.</p>
{% highlight html %}
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
...
</html>
diff --git a/docs/_includes/getting-started/template.html b/docs/_includes/getting-started/template.html
index b6a72b567..d119634f1 100644
--- a/docs/_includes/getting-started/template.html
+++ b/docs/_includes/getting-started/template.html
@@ -5,7 +5,7 @@
<p>Copy the HTML below to begin working with a minimal Bootstrap document.</p>
{% highlight html %}
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html
index 948ea389f..fbace75ce 100644
--- a/docs/_layouts/default.html
+++ b/docs/_layouts/default.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
{% include header.html %}
diff --git a/docs/_layouts/home.html b/docs/_layouts/home.html
index 011b53365..27aa91ac5 100644
--- a/docs/_layouts/home.html
+++ b/docs/_layouts/home.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
{% include header.html %}
diff --git a/docs/examples/blog/index.html b/docs/examples/blog/index.html
index f04897e6c..e418c9d21 100644
--- a/docs/examples/blog/index.html
+++ b/docs/examples/blog/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/carousel/index.html b/docs/examples/carousel/index.html
index 838949ba1..5b0fabba4 100644
--- a/docs/examples/carousel/index.html
+++ b/docs/examples/carousel/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/cover/index.html b/docs/examples/cover/index.html
index c98bb839d..09cc8418c 100644
--- a/docs/examples/cover/index.html
+++ b/docs/examples/cover/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/dashboard/index.html b/docs/examples/dashboard/index.html
index 74740e4bc..592ea7786 100644
--- a/docs/examples/dashboard/index.html
+++ b/docs/examples/dashboard/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/grid/index.html b/docs/examples/grid/index.html
index 676c03ede..a366ca74f 100644
--- a/docs/examples/grid/index.html
+++ b/docs/examples/grid/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/jumbotron-narrow/index.html b/docs/examples/jumbotron-narrow/index.html
index 9679926ca..c0a30ae31 100644
--- a/docs/examples/jumbotron-narrow/index.html
+++ b/docs/examples/jumbotron-narrow/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/jumbotron/index.html b/docs/examples/jumbotron/index.html
index 044ddfda7..9d6086e94 100644
--- a/docs/examples/jumbotron/index.html
+++ b/docs/examples/jumbotron/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/justified-nav/index.html b/docs/examples/justified-nav/index.html
index f228900a8..e78ea65be 100644
--- a/docs/examples/justified-nav/index.html
+++ b/docs/examples/justified-nav/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/navbar-fixed-top/index.html b/docs/examples/navbar-fixed-top/index.html
index 1eb2bdfdc..4e327964f 100644
--- a/docs/examples/navbar-fixed-top/index.html
+++ b/docs/examples/navbar-fixed-top/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/navbar-static-top/index.html b/docs/examples/navbar-static-top/index.html
index 5a8a113e6..b70eaceef 100644
--- a/docs/examples/navbar-static-top/index.html
+++ b/docs/examples/navbar-static-top/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/navbar/index.html b/docs/examples/navbar/index.html
index 5117b4597..b72074c8e 100644
--- a/docs/examples/navbar/index.html
+++ b/docs/examples/navbar/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/non-responsive/index.html b/docs/examples/non-responsive/index.html
index 243593a82..945dfd18e 100644
--- a/docs/examples/non-responsive/index.html
+++ b/docs/examples/non-responsive/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/offcanvas/index.html b/docs/examples/offcanvas/index.html
index 1e1cb900a..4f3600f7d 100644
--- a/docs/examples/offcanvas/index.html
+++ b/docs/examples/offcanvas/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/signin/index.html b/docs/examples/signin/index.html
index 3230271f0..9f202d6c8 100644
--- a/docs/examples/signin/index.html
+++ b/docs/examples/signin/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/starter-template/index.html b/docs/examples/starter-template/index.html
index 28a93cafd..ef396212b 100644
--- a/docs/examples/starter-template/index.html
+++ b/docs/examples/starter-template/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/sticky-footer-navbar/index.html b/docs/examples/sticky-footer-navbar/index.html
index 96dca0c4c..c8375b208 100644
--- a/docs/examples/sticky-footer-navbar/index.html
+++ b/docs/examples/sticky-footer-navbar/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/sticky-footer/index.html b/docs/examples/sticky-footer/index.html
index 9d1437fcc..c4e0922dc 100644
--- a/docs/examples/sticky-footer/index.html
+++ b/docs/examples/sticky-footer/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/theme/index.html b/docs/examples/theme/index.html
index 17b20072f..0d5c463c9 100644
--- a/docs/examples/theme/index.html
+++ b/docs/examples/theme/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
diff --git a/docs/examples/tooltip-viewport/index.html b/docs/examples/tooltip-viewport/index.html
index 4cb3f6c53..1573685e8 100644
--- a/docs/examples/tooltip-viewport/index.html
+++ b/docs/examples/tooltip-viewport/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE html>
+<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">