summaryrefslogtreecommitdiff
path: root/layout
diff options
context:
space:
mode:
Diffstat (limited to 'layout')
-rw-r--r--layout/item.html10
-rw-r--r--layout/page.html1
-rw-r--r--layout/post.html4
3 files changed, 4 insertions, 11 deletions
diff --git a/layout/item.html b/layout/item.html
index 4fb8500..2395306 100644
--- a/layout/item.html
+++ b/layout/item.html
@@ -1,10 +1,4 @@
-<article>
-<h2><a href="{{ base_path }}/{{ blog }}/{{ slug }}/">{{ title }}</a></h2>
+<article class="blog_item">
+<h4><a href="{{ base_path }}/{{ blog }}/{{ slug }}/">{{ title }}</a></h4>
<p class="meta">published on {{ date }}</p>
-<p class="summary">
-{{ summary }}&nbsp;<a class="more" href="{{ base_path }}/{{ blog }}/{{ slug }}/">...</a>
-</p>
-<div>
-<a class="more" href="{{ base_path }}/{{ blog }}/{{ slug }}/">read more</a>
-</div>
</article>
diff --git a/layout/page.html b/layout/page.html
index f300dbe..e2d342e 100644
--- a/layout/page.html
+++ b/layout/page.html
@@ -15,7 +15,6 @@
<a href="{{ base_path }}/">home</a>
<a href="{{ base_path }}/blog/">blog</a>
<a href="{{ base_path }}/projects/">projects</a>
- <a href="{{ base_path }}/faq/">faq</a>
</span>
</section>
</nav>
diff --git a/layout/post.html b/layout/post.html
index bd5beb3..71d40d5 100644
--- a/layout/post.html
+++ b/layout/post.html
@@ -1,5 +1,5 @@
-<article>
-<h1><a href="{{ base_path }}/{{ blog }}/{{ slug }}/">{{ title }}</a></h1>
+<article class="post">
+<h1>{{ title }}</h1>
<p class="meta">published on {{ date }}</p>
{{ content }}
</article>