_layouts/default.html in testc100-0.1.2 vs _layouts/default.html in testc100-0.1.3

- old
+ new

@@ -1,3 +1,23 @@ -{{ content }} +<!DOCTYPE html> +<html lang="{{ page.lang | default: site.lang | default: 'en' }}"> + {% include head.html %} + <body> + <div class="container"> + {% include header.html %} -<p>Sucess!</p> \ No newline at end of file + <main> + {{ content }} + </main> + + {% include footer.html %} + </div> + + {% if page.math %} + {% include mathjax.html %} + {% endif %} + + {% if jekyll.environment == 'production' and site.google_analytics %} + {% include google-analytics.html %} + {% endif %} + </body> +</html>