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

Commit

Permalink
Merge pull request #263 from TailorDev/perf
Browse files Browse the repository at this point in the history
Enhance perceived perf on initial load
  • Loading branch information
willdurand authored Nov 5, 2016
2 parents 52b8887 + 07f0dc0 commit ff0b2d9
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,29 @@
</head>
<body>
<% if (htmlWebpackPlugin.options.appMountId) { %>
<div id="<%= htmlWebpackPlugin.options.appMountId%>" data-app-version="<%= htmlWebpackPlugin.options.version %>"></div>
<div
id="<%= htmlWebpackPlugin.options.appMountId%>"
data-app-version="<%= htmlWebpackPlugin.options.version %>"
>
<div class="layout">
<header class="main">
<h1>Monod <small>The Markdown Editor</small></h1>
</header>
<div class="editor">
<div class="markdown"></div>
<div class="vertical-handler">
<div class="left" ><i class="fa fa-chevron-left"></i></div>
<div class="right"><i class="fa fa-chevron-right"></i></div>
</div>
<div class="preview"></div>
</div>
<footer class="main">
<div class="credits">
By the good folks at TailorDev, 2016.
</div>
</footer>
</div>
</div>
<% } %>
<script>
//<![CDATA[
Expand Down

0 comments on commit ff0b2d9

Please sign in to comment.