JSFiddle - React, Tailwind, and code Playground
HTML
<!-- InstanceBegin template="/Templates/my_dw_site_main.dwt" codeOutsideHTMLIsLocked="false" --><!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
Note how Dreamweaver has added it's template comment before the html tag.
if i remove the conditional around the last html tag then then the following happens:
<!doctype html><!-- InstanceBegin template="/Templates/my_dw_site_main.dwt" codeOutsideHTMLIsLocked="false" -->
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<html class="no-js" lang="en">
<head>
which is what needs to happen...fuuuu DW.