We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08f1c6d commit 0b32645Copy full SHA for 0b32645
_layouts/post.html
@@ -2,4 +2,9 @@
2
layout: default
3
---
4
5
-{{ content }}
+<div class='card z-depth-1'>
6
+ <div class="card-content">
7
+ <a href="{{ url }}"><h2>{{ title }}</h2></a>
8
+ {{ content }}
9
+ </div>
10
+</div>
blog.html
@@ -7,7 +7,7 @@
{% for post in site.posts %}
<div class='card z-depth-1'>
<div class="card-content">
- <a href="{{ post.link }}"><h2>{{ post.title }}</h2></a>
+ <a href="{{ post.link }}"></a><h2>{{ post.title }}</h2></a>
11
{{ post.content }}
12
</div>
13
0 commit comments