aboutsummaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
authorHeather Miller <heather.miller@epfl.ch>2016-10-16 23:40:17 -0400
committerHeather Miller <heather.miller@epfl.ch>2016-10-16 23:40:17 -0400
commit688653bb59c5a7678667aaa5255a0911e1060012 (patch)
tree3ca00d4c1804b835bfb6a1d8743776af6fd2d4c6 /_layouts
parentb114c2257c1d176b6f5ab8bac78c35bf1dd17769 (diff)
More progress
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/page.html10
-rw-r--r--_layouts/post.html17
2 files changed, 4 insertions, 23 deletions
diff --git a/_layouts/page.html b/_layouts/page.html
index ce233ad..12956f2 100644
--- a/_layouts/page.html
+++ b/_layouts/page.html
@@ -1,14 +1,12 @@
---
layout: default
---
-<article class="post">
- <header class="post-header">
- <h1 class="post-title">{{ page.title }}</h1>
- </header>
+<article>
+
+ <h1 class="post-title">{{ page.title }}</h1>
+ <div class="author">By {{ page.by }}</div>
- <div class="post-content">
{{ content }}
- </div>
</article>
diff --git a/_layouts/post.html b/_layouts/post.html
deleted file mode 100644
index c1a2e99..0000000
--- a/_layouts/post.html
+++ /dev/null
@@ -1,17 +0,0 @@
----
-layout: default
----
-
-<article>
-
- <h1 class="post-title">{{ page.title }}</h1>
- <div class="author">By {{ page.by }}</div>
-
- <!-- <header class="post-header">
- <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1>
- <p class="post-meta"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time>{% if page.author %} • <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">{{ page.author }}</span></span>{% endif %}</p>
- </header> -->
-
- {{ content }}
-
-</article>