Last active
April 30, 2020 07:04
-
-
Save solisoft/aff95a635bff8e0dbf6dc03f914ecff7 to your computer and use it in GitHub Desktop.
This file contains 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 lang="{{ lang }}"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
@headers | |
<link rel="stylesheet" href="@css_vendors" /> | |
<link rel="stylesheet" href="@css" /> | |
</head> | |
<body> | |
{{ partial | nav }} | |
@yield | |
@raw_yield | |
{{ partial | footer }} | |
<script src='@js_vendors'></script> | |
<script src='@js'></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment