From aa230616241321ca9c4b8f4202d045c829527618 Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Tue, 7 Jun 2011 16:12:46 -0400 Subject: Added themes directory, improved javascript load and minification. --- themes/classic/source/_includes/article.html | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 themes/classic/source/_includes/article.html (limited to 'themes/classic/source/_includes/article.html') diff --git a/themes/classic/source/_includes/article.html b/themes/classic/source/_includes/article.html new file mode 100644 index 00000000..1be65526 --- /dev/null +++ b/themes/classic/source/_includes/article.html @@ -0,0 +1,28 @@ +{% if page.author %} + {% assign author = page.author %} +{% else %} + {% assign author = site.author %} +{% endif %} +
+ {% if index %} +

{{ page.title }}

+ {% else %} +

{{ page.title }}

+ {% endif %} + {% unless page.nometa %} +

+ {% if page.date %} + + {% endif %} + {% if page.updated %} + + {% endif %} + {% if author %}{% endif %} +

+ {% endunless %} +
+{% if index %} +
{{ content | exerpt(content, page.url, 'Continue reading »') | smart_quotes }}
+{% else %} +
{{ content | smart_quotes }}
+{% endif %} -- cgit v1.2.1