Skip to content

Commit

Permalink
Start the end2end new version
Browse files Browse the repository at this point in the history
  • Loading branch information
nandomoreirame committed Jul 22, 2017
1 parent a7ab7bc commit d0c628f
Show file tree
Hide file tree
Showing 23 changed files with 2,483 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
@@ -0,0 +1,9 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
24 changes: 24 additions & 0 deletions source/_layouts/pages.html
@@ -0,0 +1,24 @@
---
layout: default
---

<main>
{% include header.html %}

<div class="container">
{{ content }}
</div>

{% include footer.html %}
{% include github-corner.html %}

<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script>
$(document).ready(function() {
$('.sliding-panel-button,.sliding-panel-fade-screen,.sliding-panel-close').on('click touchstart',function (e) {
$('.sliding-panel-content,.sliding-panel-fade-screen').toggleClass('is-visible');
e.preventDefault();
});
});
</script>
</main>

0 comments on commit d0c628f

Please sign in to comment.