summaryrefslogtreecommitdiff
path: root/_site_build/_layouts
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2019-03-25 21:05:35 +0000
committerDavid T. Sadler <davidtsadler@googlemail.com>2019-03-25 21:05:35 +0000
commite1f06b311652786b2a3c9dd5981bbe9b51383d1a (patch)
tree6a584596d2d402f6eeb1e4bc14374a76fb8e1dec /_site_build/_layouts
parent4972068ab2e97a017e28f4e7b91858f9fcaeceb6 (diff)
Begining of rebuild.
Diffstat (limited to '_site_build/_layouts')
-rw-r--r--_site_build/_layouts/category_index.html11
-rw-r--r--_site_build/_layouts/default.html46
-rw-r--r--_site_build/_layouts/post.html41
3 files changed, 0 insertions, 98 deletions
diff --git a/_site_build/_layouts/category_index.html b/_site_build/_layouts/category_index.html
deleted file mode 100644
index 61a79a8..0000000
--- a/_site_build/_layouts/category_index.html
+++ /dev/null
@@ -1,11 +0,0 @@
----
-layout: default
-robots: follow, noindex, noodp, noydir, noarchive
-show_comment_counts: true
----
-<section id="category">
- <h1>{{ page.title }}</h1>
- {% for post in site.categories[page.category] %}
- {% include post_excerpt.html %}
- {% endfor %}
-</section>
diff --git a/_site_build/_layouts/default.html b/_site_build/_layouts/default.html
deleted file mode 100644
index 264ad87..0000000
--- a/_site_build/_layouts/default.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<!doctype html>
-<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
-<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
-<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
-<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
-<head>
- {% include head.html %}
-</head>
-<body>
- <div class="container">
- <div id="header" class="row">
- <div class="twelve columns">
- {% include header.html %}
- </div>
- </div>
- <div id="content" class="row">
- <div class="eight columns">
- {{ content }}
- </div>
- <div class="four columns">
- {% include sidebar.html %}
- </div>
- </div>
- <div id="footer" class="row">
- <div class="twelve columns">
- {% include footer.html %}
- </div>
- </div>
- </div>
-{% if site.production and site.google_ua %}
- {% include javascript/google_analytics.html %}
-{% endif %}
-{% if page.google_plus %}
- {% include javascript/google_plus.html %}
-{% endif %}
-{% if page.twitter_share %}
- {% include javascript/twitter.html %}
-{% endif %}
-{% if page.facebook_like %}
- {% include javascript/facebook.html %}
-{% endif %}
-{% if (page.comments or page.show_comment_counts) and site.disqus_shortname %}
- {% include javascript/disqus.html %}
-{% endif %}
-</body>
-</html>
diff --git a/_site_build/_layouts/post.html b/_site_build/_layouts/post.html
deleted file mode 100644
index df0dcd0..0000000
--- a/_site_build/_layouts/post.html
+++ /dev/null
@@ -1,41 +0,0 @@
----
-layout: default
----
-<article>
- <header>
- <h1>{{ page.title }}</h1>
- <time datetime="{{ page.date | date: '%Y-%m-%d' }}" pubdate>{{ page.date | date: '%A' }} {{ page.date | ordinalize }} {{ page.date | date: '%B, %Y' }}</time>
- {% if site.generate_category_indexes and page.categories.size != 0 %}
- <span class="categories"> | Posted in {{ page.categories | category_links }}</span>
- {% endif %}
- {% if page.comments and site.disqus_shortname %}
- <span class="comment-count"> | <a href="{{ page.url }}#disqus_thread" data-disqus-identifier="{{ page.url }}">Comments</a></span>
- {% endif %}
- {% if site.social_buttons %}
- {% include social/buttons.html %}
- {% endif %}
- </header>
- {{ content }}
- <footer>
- {% if site.social_buttons %}
- {% include social/buttons.html %}
- {% endif %}
- <nav>
- <ul>
- {% if page.previous.url %}
- <li class="prev-article"><a href="{{ page.previous.url }}" target="_self" rel="prev bookmark" title="{{ page.previous.title }}">&laquo; {{ page.previous.title }}</a></li>
- {% endif %}
- {% if page.next.url %}
- <li class="next-article"><a href="{{ page.next.url }}" target="_self" rel="next bookmark" title="{{ page.next.title }}">{{ page.next.title }} &raquo;</a></li>
- {% endif %}
- </ul>
- </nav>
- </footer>
- {% if page.comments and site.disqus_shortname %}
- <aside>
- <div id="disqus_thread"></div>
- <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
- <a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
- </aside>
- {% endif %}
-</article>