Skip to content

Commit 14e1d23

Browse files
committed
Remove twitter styling from posts list.
1 parent 5b0ca08 commit 14e1d23

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

index.html

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,15 @@
33
title: Moq
44
---
55

6-
<div>
7-
<iframe src="posts.html" id="twitter-widget-1" class="twitter-timeline twitter-timeline-rendered"
8-
scrolling="no" frameborder="0" allowtransparency="true"
9-
style="border: none; max-width: 100%; min-width: 180px;" title="Posts Widget" width="300" height="500"></iframe>
10-
</div>
6+
<div class="content">
7+
<div class="related">
8+
<h2>Posts</h2>
9+
<ul>
10+
{% for post in site.posts %}
11+
<li>
12+
<a href="{{ post.url }}">{{ post.title }}</a> <small>on <span>{{ post.date | date: "%B %e, %Y" }}</span></small>
13+
</li>
14+
{% endfor %}
15+
</ul>
16+
</div>
17+
</div>

0 commit comments

Comments
 (0)