Last active
September 26, 2019 08:51
-
-
Save marekalgoud/95d379ad82615f58e198a3e2a5cef555 to your computer and use it in GitHub Desktop.
page layout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>{{ pageTitle }}</title> | |
| </head> | |
| <body class="{{ pageClass }}"> | |
| <header class="c-header"> | |
| <nav> | |
| <a href="home.html">Home</a> | |
| <a href="list.html">List</a> | |
| <a href="article.html">Article</a> | |
| </nav> | |
| </header> | |
| <div data-barba="wrapper"> | |
| <main id="content" role="main" data-barba="container" data-barba-namespace="{{ pageClass }}"> | |
| {% block mainContent %} | |
| {% endblock mainContent %} | |
| </main> | |
| </div> | |
| <footer class="c-footer"> | |
| test page transition | |
| </footer> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment