Skip to content
This repository has been archived by the owner on Apr 24, 2019. It is now read-only.

Commit

Permalink
Use <!doctype html> instead of <!DOCTYPE html>
Browse files Browse the repository at this point in the history
Return back to the lowercase doctype in order to be more consistent
with the lowercase of the html tags.

References:

 * h5bp/html5-boilerplate#1522
 * http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html#the-doctype
  • Loading branch information
alrra committed May 17, 2014
1 parent a523a21 commit 2ce0c6d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 404.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

### HEAD

* Use `<!doctype html>` instead of `<!DOCTYPE html>`
* Update component jQuery to 1.11.1
* Update component Modernizr to v2.8.0
* Update npm packages to their latest version
Expand Down
2 changes: 1 addition & 1 deletion templates/header.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<!--[if lt IE 8]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
Expand Down

0 comments on commit 2ce0c6d

Please sign in to comment.