2014-11-23 17:00:07 +00:00
<!DOCTYPE html>
< html >
< head >
2014-11-23 22:13:05 +00:00
< meta charset = "utf-8" / >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge,chrome=1" / >
2014-12-21 06:42:48 +00:00
< title > ${title()}< / title >
2014-11-23 22:13:05 +00:00
< meta name = "description" content = "Regular expression visualizer using railroad diagrams" / >
< meta name = "viewport" content = "width=device-width" / >
< link rel = "shortcut icon" href = "/favicon.ico" / >
< link rel = "author" href = "humans.txt" / >
2015-06-24 01:03:14 +00:00
< link rel = "stylesheet" href = "//fonts.googleapis.com/css?family=Bangers&text=Regxpr" / >
2014-11-23 21:16:10 +00:00
< link rel = "stylesheet" href = "/css/main.css" / >
2014-12-24 01:23:37 +00:00
<!-- Built: ${date} -->
2014-11-23 17:00:07 +00:00
< / head >
< body >
2014-12-25 12:59:03 +00:00
<!-- [if lte IE 8]>
< div id = "deprecation-notice" >
< h1 > Regexper< / h1 >
< p > Your browser is no longer supported by the current version of Regexper. Upgrade your browser to the latest version, or visit < a href = "http://old.regexper.com/" > the old Regexper< / a > .< / p >
< / div >
<![endif]-->
2015-06-17 00:32:09 +00:00
<!-- [if gt IE 8]> <! -->
2014-12-30 02:31:36 +00:00
< script type = "text/html" id = "svg-container-base" >
< div class = "svg" >
< svg
xmlns="http://www.w3.org/2000/svg"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
version="1.1">
< defs >
< style type = "text/css" > $ { s v g S t y l e s } < / style >
< / defs >
< metadata >
< rdf:RDF >
< cc:License rdf:about = "http://creativecommons.org/licenses/by/3.0/" >
< cc:permits rdf:resource = "http://creativecommons.org/ns#Reproduction" / >
< cc:permits rdf:resource = "http://creativecommons.org/ns#Distribution" / >
< cc:requires rdf:resource = "http://creativecommons.org/ns#Notice" / >
< cc:requires rdf:resource = "http://creativecommons.org/ns#Attribution" / >
< cc:permits rdf:resource = "http://creativecommons.org/ns#DerivativeWorks" / >
< / cc:License >
< / rdf:RDF >
< / metadata >
< / svg >
< / div >
< div class = "progress" >
< div style = "width:0;" > < / div >
< / div >
2014-12-26 20:38:22 +00:00
< / script >
2014-12-21 19:39:00 +00:00
2014-11-23 22:13:05 +00:00
< header >
< div class = "logo" >
< h1 > < a href = "/" > Regexper< / a > < / h1 >
<!-- n. One who regexpes -->
< span > You thought you only had two problems… < / span >
< / div >
2014-12-15 16:05:37 +00:00
< nav >
2014-12-16 16:05:13 +00:00
< ul >
2014-12-26 19:57:13 +00:00
< li >
< a class = "oi with-text" data-glyph = "list-rich" href = "/changelog.html" > Changelog< / a >
< / li >
< li >
< a class = "oi with-text" data-glyph = "document" href = "/documentation.html" > Documentation< / a >
< / li >
< li >
2014-12-26 21:17:30 +00:00
< a class = "oi with-text" data-glyph = "code" href = "https://github.com/javallone/regexper-static" > Source on GitHub< / a >
2014-12-26 19:57:13 +00:00
< / li >
2014-12-16 16:05:13 +00:00
< / ul >
2014-12-15 16:05:37 +00:00
< / nav >
2014-11-23 22:13:05 +00:00
< / header >
2014-12-21 19:03:52 +00:00
< main id = "content" >
2014-11-23 22:13:05 +00:00
${contents}
2014-12-21 19:03:52 +00:00
< / main >
2014-11-23 22:13:05 +00:00
< footer >
< ul class = "inline-list" >
< li > Created by < a href = "mailto:jeff.avallone@gmail.com" > Jeff Avallone< / a > < / li >
< li >
Generated images licensed:
2015-07-05 22:33:22 +00:00
< a rel = "license" href = "http://creativecommons.org/licenses/by/3.0/" > < img alt = "Creative Commons License" src = "https://licensebuttons.net/l/by/3.0/80x15.png" / > < / a >
2014-11-23 22:13:05 +00:00
< / li >
< / ul >
< / footer >
2014-12-25 12:59:03 +00:00
<!-- <![endif] -->
2014-11-23 17:00:07 +00:00
< / body >
< / html >