6e3470d5c7
This should reduce the size of font file requested
93 lines
3.2 KiB
HTML
93 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
|
|
<title>${title()}</title>
|
|
|
|
<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" />
|
|
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Bangers&text=Regxpr" />
|
|
<link rel="stylesheet" href="/css/main.css" />
|
|
<!-- Built: ${date} -->
|
|
</head>
|
|
<body>
|
|
<!--[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]-->
|
|
<!--[if gt IE 8]> <!-->
|
|
<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">${svgStyles}</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>
|
|
</script>
|
|
|
|
<header>
|
|
<div class="logo">
|
|
<h1><a href="/">Regexper</a></h1>
|
|
<!-- n. One who regexpes -->
|
|
<span>You thought you only had two problems…</span>
|
|
</div>
|
|
|
|
<nav>
|
|
<ul>
|
|
<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>
|
|
<a class="oi with-text" data-glyph="code" href="https://github.com/javallone/regexper-static">Source on GitHub</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<main id="content">
|
|
${contents}
|
|
</main>
|
|
|
|
<footer>
|
|
<ul class="inline-list">
|
|
<li>Created by <a href="mailto:jeff.avallone@gmail.com">Jeff Avallone</a></li>
|
|
<li>
|
|
Generated images licensed:
|
|
<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>
|
|
</li>
|
|
</ul>
|
|
</footer>
|
|
<!-- <![endif]-->
|
|
</body>
|
|
</html>
|