diff --git a/_includes/custom-head.html b/_includes/head-custom.html similarity index 100% rename from _includes/custom-head.html rename to _includes/head-custom.html diff --git a/_includes/head.html b/_includes/head.html deleted file mode 100644 index 00fe149..0000000 --- a/_includes/head.html +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - {%- feed_meta -%} - {%- if jekyll.environment == 'production' and site.google_analytics -%} - {%- include google-analytics.html -%} - {%- endif -%} - - {%- include custom-head.html -%} - - \ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..cdefcd8 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,51 @@ + + + + + + + + + + {% include head-custom.html %} + + + + + +
+
+ {% if site.github.is_project_page %} + View on GitHub + {% endif %} + +

{{ site.title | default: site.github.repository_name }}

+

{{ site.description | default: site.github.project_tagline }}

+ + {% if site.show_downloads %} +
+ Download this project as a .zip file + Download this project as a tar.gz file +
+ {% endif %} +
+
+ + +
+
+ {{ content }} +
+
+ + + + + \ No newline at end of file