diff options
Diffstat (limited to '_layouts/base.html')
-rw-r--r-- | _layouts/base.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/_layouts/base.html b/_layouts/base.html new file mode 100644 index 0000000..8a02572 --- /dev/null +++ b/_layouts/base.html @@ -0,0 +1,25 @@ +--- +layout: none +--- +<!DOCTYPE html> +{%- include snippets/get-lang.html -%} +<html lang="{{ __return }}"> + <head> + {%- include analytics.html -%} + {%- include head.html -%} + <script> + {%- include scripts/utils/utils.js -%} + {%- include scripts/lib/throttle.js -%} + {%- include scripts/lib/lazyload.js -%} + </script> + {%- include scripts/variables.html -%} + </head> + <body> + <div class="root" data-is-touch="false"> + {{ content }} + </div> + <script> + {%- include scripts/common.js -%} + </script> + </body> +</html> |