JSFiddle - React, Tailwind, and code Playground

by JamesKyle

HTML

doctype html
/[if lt IE 7] html.no-js.ie.lt-ie9.lt-ie8.lt-ie7 lang="en"
/[if IE 7]    html.no-js.ie.lt-ie9.lt-ie8.is-ie7 lang="en" 
/[if IE 8]    html.no-js.ie.lt-ie9.is-ie8.gt-ie7 lang="en"
/[if IE 9]    html.no-js.ie.is-ie9.gt-ie8.gt-ie7 lang="en"
/[if IE 9]    html.no-js.ie.gt-ie9.gt-ie8.gt-ie7 lang="en"
<!--[if !IE]> -->
html.no-js    (lang="en")
<!-- <![endif]>

/////////////////////////////////////////////////////////

meta charset="utf-8"
meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"
meta content="width=device-width initial-scale=1.0" name="viewport"

title CoachUp · Find a Great Private Coach

/ SEO data
meta name="description" content="CoachUp is an online platform that helps people achieve their full potential in sports by connecting them with vetted private coaches."
meta name="keywords" content="CoachUp"

/ link rel="sitemap" type="application/xml" title="Sitemap" href="/sitemap.xml"

/ Link Renaming
link rel="canonical" href="https://coachup.com/"

/ IE9+ Special Functions
meta name="application-name" content="CoachUp"
meta name="msapplication-navbutton-color" content="#f2a"

/ Links & Scripts
link rel="stylesheet" href="style/master.css"
link rel="stylesheet" href="style/bit/notify.css"
script src="script/lib/modernizr.min.js"

/ Misc 
link rel="author" href="/humans.txt"

/////////////////////////////////////////////////////////

/ if lt IE 8
    p.chromeframe
        markdown:
            Your browser is *ancient!* [Upgrade to a different browser](//browsehappy.com/) or [install Google Chrome Frame](//www.google.com/chromeframe/?redirect=true) to experience this site.

/////////////////////////////////////////////////////////

= insert _/doctype
    head
        = insert _/head
    body
        = insert _/chromeframe
        div.master
            = content_for?(:master) ? yield(:master) : yield
        = insert _/foot