diff options
author | Karl Hallsby <karl@hallsby.com> | 2020-09-27 14:31:36 -0500 |
---|---|---|
committer | Karl Hallsby <karl@hallsby.com> | 2020-09-27 14:32:00 -0500 |
commit | 61b34a5f260db45575d448d766ea29c0fb273ed3 (patch) | |
tree | 4ac84fa917df0c69fb0fc6d587750514e7d0d813 /_layouts/base.html | |
parent | c3cafe3c3817f52d4c588b5b0d6e71e07e06145e (diff) |
Add jekyll-text-theme YAML files
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> |