-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
27 lines (24 loc) · 684 Bytes
/
blog.html
File metadata and controls
27 lines (24 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: default
title: Blog
---
<h1>Posts</h1>
<div style="border-top: 1px solid black"></div>
<!-- <ul> -->
<!-- {% for post in site.posts %} -->
<!-- <li style="border-style: solid; border-width: 1px; list-style-type: none; margin-bottom: 20px;"> -->
<!-- <h2><a href="{{ post.url }}">{{ post.title }}</a></h2> -->
<!-- <\!-- {{ post.excerpt }} -\-> -->
<!-- </li> -->
<!-- {% endfor %} -->
<!-- </ul> -->
<!-- <ul> -->
<div class="container">
{% for post in site.posts %}
<div class="post">
<img src="{{ post.header }}">
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
</div>
{% endfor %}
</div>
<!-- </ul> -->